Skip to content

Instantly share code, notes, and snippets.

@tempos21ios
Last active December 16, 2015 09:28
Show Gist options
  • Save tempos21ios/5412681 to your computer and use it in GitHub Desktop.
Save tempos21ios/5412681 to your computer and use it in GitHub Desktop.
Check Instance & Class methods
#import <objc/message.h>
SEL method = @selector(sendAsynchronousRequest:queue:completionHandler:);
if(!(class_getClassMethod([NSURLConnection class],method) != nil))
{
return;
}
//class_getClassMethod
//class_getInstanceMethod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment