Skip to content

Instantly share code, notes, and snippets.

@nwg
Created March 7, 2012 07:06
Show Gist options
  • Select an option

  • Save nwg/1991573 to your computer and use it in GitHub Desktop.

Select an option

Save nwg/1991573 to your computer and use it in GitHub Desktop.
Objective c declaration order example
@interface MyController ()
- (void)doA ;
@end
@implementation MyController
- (void)doB{ doA(); }
- (void)doA{ }
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment