How to add a button to UINavigationBar programmatically?
|
feedback
|
|
Sample code to set the right button on a navigation bar.
But normally you would have a navigation controller, enabling you to write:
| |||||||||||||
feedback
|
|
The answers above are good, but I'd like to flesh them out with a few more tips: If you want to modify the title of the back button (the arrow-y looking one at the left of the navigation bar) you MUST do it in the PREVIOUS view controller, not the one for which it will display. It's like saying "hey, if you ever push another view controller on top of this one, call the back button "Back" (or whatever) instead of the default." If you want to hide the back button during a special state, such as while a UIPickerView is displayed, use self.navigationItem.hidesBackButton = YES; -- and remember to set it back when you leave the special state. If you want to display one of the special symbolic buttons, use the form
Remember, the meaning of that symbol is up to you, but be careful of the Human Interface Guidelines. Using UIBarButtonSystemItemAdd to mean deleting an item will probably get your application rejected. | |||
|
feedback
|