Skip to content

Instantly share code, notes, and snippets.

@ntalbott
Created April 2, 2011 23:50
Show Gist options
  • Save ntalbott/900022 to your computer and use it in GitHub Desktop.
Save ntalbott/900022 to your computer and use it in GitHub Desktop.
@interface TT : NSObject {
}
-(BOOL)isEnabled;
@end
@implementation TT
- (BOOL)isEnabled
{
return NO;
}
@end
p TT.alloc.init.isEnabled # => 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment