Skip to content

Instantly share code, notes, and snippets.

@lukeredpath
Created January 7, 2013 19:38
Show Gist options
  • Save lukeredpath/4477731 to your computer and use it in GitHub Desktop.
Save lukeredpath/4477731 to your computer and use it in GitHub Desktop.
@implementation NSObject (Identity)
- (BOOL)LR_isClass
{
return [self class] == self;
}
- (BOOL)LR_isProtocol
{
return [self class] == NSClassFromString(@"Protocol");
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment