Skip to content

Instantly share code, notes, and snippets.

@jmreidy
Created August 17, 2010 17:34
Show Gist options
  • Save jmreidy/531018 to your computer and use it in GitHub Desktop.
Save jmreidy/531018 to your computer and use it in GitHub Desktop.
@interface MyClass()
- (void)myPrivateMethod;
@end
@implementation MyClass
- (void)myPublicMethod {
// Implementation goes here
}
- (void)myPrivateMethod {
// Implementation goes here
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment