May 2011
Beginner
834 pages
25h 19m
English
Developing an Xcode project involves editing code in many files at once. Xcode provides numerous ways to navigate your code. Many of these have been mentioned in previous chapters.
xib to see just your nib files. Moreover, after using the filter bar, you can press Tab and then the Up or Down arrow key to navigate the Project navigator. Thus you can reach the desired nib file with the keyboard alone.
dealloc implementations in your code, highlight the first two icons (the first two are light, the third is dark) and type deall in the search field.
Every path component of the jump bar is a menu:
At the bottom level (farthest right) in the jump bar is a list of your file’s method and function declarations and definitions, in the order in which they appear (hold Command while choosing the menu to see them in alphabetical order); choose one to navigate to it.
You can add your own entries to this bottom-level menu using the #pragma mark directive. For example:
#pragma mark Memory Management - (void)dealloc { [window release]; ...Read now
Unlock full access