Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am unable to set the left button in my navigation bar. Anyone have an idea why the code below is not displaying a button?

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] 
 initWithTitle:@"my left button" 
 style:UIBarButtonItemStyleBordered 
 target:nil 
 action:nil];


[self.navigationItem setLeftBarButtonItem:barButton];

 //this is now printing out "my left button", 
 //but the button still does not appear on the navigation.
 NSLog(@"navigationItem.leftBarButtonItem.title:
  %@",self.navigationItem.leftBarButtonItem.title);

Interface Builder:

enter image description here

Simulator:

enter image description here

---UPDATE----

The above code is updated with correct enum and init based on CodaFi's suggestions but the button is still not appearing.

share|improve this question
What is navigationItem and where have you defined and initialized it? – trumpetlicks Jun 18 '12 at 19:30
The posted code is in the viewDidLoad of my subclass of a UIViewController. navigationItem is a property of UIViewController, do I need to initialize it? – joe Jun 18 '12 at 19:34

1 Answer

up vote 1 down vote accepted

The initWithBarButtonSystemItem: part of your init method is being supplied the wrong enum value.

System items are different from bar button styles (case in point UIBarButtonItem*Style*Bordered, vs UIBarButton*System*ItemAdd).

Here is the list of valid enum values:

typedef enum { UIBarButtonSystemItemDone, UIBarButtonSystemItemCancel, UIBarButtonSystemItemEdit, UIBarButtonSystemItemSave, UIBarButtonSystemItemAdd, UIBarButtonSystemItemFlexibleSpace, UIBarButtonSystemItemFixedSpace, UIBarButtonSystemItemCompose, UIBarButtonSystemItemReply, UIBarButtonSystemItemAction, UIBarButtonSystemItemOrganize, UIBarButtonSystemItemBookmarks, UIBarButtonSystemItemSearch, UIBarButtonSystemItemRefresh, UIBarButtonSystemItemStop, UIBarButtonSystemItemCamera, UIBarButtonSystemItemTrash, UIBarButtonSystemItemPlay, UIBarButtonSystemItemPause, UIBarButtonSystemItemRewind, UIBarButtonSystemItemFastForward, UIBarButtonSystemItemUndo, // iOS 3.0 and later UIBarButtonSystemItemRedo, // iOS 3.0 and later UIBarButtonSystemItemPageCurl

share|improve this answer
What enum value should be passed in? – joe Jun 18 '12 at 19:51
Depends on what you want. – CodaFi Jun 18 '12 at 19:52
I just changed it to UIBarButtonItemStyleBordered and the log is still printing null – joe Jun 18 '12 at 19:54
Yeah, that's the point. It's a style, not a system item. You're using the wrong init method then. Use initWithTitle:style:target:action: instead for style – CodaFi Jun 18 '12 at 19:56
The button is still not appearing. Do I need to somehow link my Navigation Bar or Navigation Item from my xib file to my implementation file? – joe Jun 18 '12 at 20:05
show 12 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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