Created
March 7, 2012 07:06
-
-
Save nwg/1991573 to your computer and use it in GitHub Desktop.
Objective c declaration order example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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