How to add a button to UINavigationBar programmatically?

link|improve this question

feedback

2 Answers

up vote 77 down vote accepted

Sample code to set the right button on a navigation bar.

UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithTitle:@"Done" 
    style:UIBarButtonSystemItemDone target:nil action:nil];
UINavigationItem *item = [[UINavigationItem alloc] initWithTitle:@"Title"];
item.rightBarButtonItem = rightButton;
item.hidesBackButton = YES;
[bar pushNavigationItem:item animated:NO];
[rightButton release];
[item release];

But normally you would have a navigation controller, enabling you to write:

UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithTitle:@"Done"
    style:UIBarButtonSystemItemDone target:nil action:nil];
self.navigationItem.rightBarButtonItem = rightButton;
[rightButton release];
link|improve this answer
2  
I would upvote this twice if I could. – BP. Sep 20 '11 at 19:29
1  
I get a warning on the style: parameter -> warning: Semantic Issue: Implicit conversion from enumeration type 'UIBarButtonSystemItem' to different enumeration type 'UIBarButtonItemStyle' – pojo Oct 12 '11 at 20:19
1  
This should be initWithBarButtonSystemItem:UIBarButtonSystemItemDone to avoid the warning. – JordanC Dec 26 '11 at 9:55
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

initWithBarButtonSystemItem:target:action with a value like UIBarButtonSystemItemAdd

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.