Skip to content

Instantly share code, notes, and snippets.

@beelsebob
Created August 25, 2011 09:26
Show Gist options
  • Select an option

  • Save beelsebob/1170308 to your computer and use it in GitHub Desktop.

Select an option

Save beelsebob/1170308 to your computer and use it in GitHub Desktop.
// In MyClass.h
@interface MyClass : NSObject
@end
// In MyClass.m
@interface MyClass ()
- (void)a;
- (void)b;
@end
@implementation MyClass
- (void)a
{
[self b];
}
- (void)b
{
NSLog(@"Zomg!");
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment