vote up 1 vote down star

I have a navigationController-based app. I want to change the title of the back button for the root view controller. I have tried the following code in the rootViewController's viewDidLoad method, but no success:

self.navigationItem.backBarButtonItem.title = @"Back";

Any ideas?

flag

45% accept rate

4 Answers

vote up 4 vote down

I've had success by creating my own UIBarButtonItem instead of setting the title of the existing one:

UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil];
self.navigationItem.backBarButtonItem = backButton;
[backButton release];
link|flag
But doesn't this create a button with the square style instead of the back-triangle style? – Marco Jan 31 at 4:47
No, it makes a perfectly normal looking back button, like an arrow pointing to the left. – Chris Lundie Jan 31 at 22:45
This doesn't work. – CodingWithoutComments May 5 at 14:47
vote up 1 vote down

You can't simply change the title of the back button in the root view controller because the root view controller is not displaying a back button. It is the root after all, what can you go back to? While there might be something logical in your app, there is nothing obvious the default implementation should do.

You can place a custom button there instead of you really want want a control there (make a UIBarButtonItem and set navigationItem.backBarButtonItem to it), though that will not have the same appearance as one of the default ones (it will be a square, as opposed to an arrow).

link|flag
The root view does have a back button. It gets displayed when it is the 'previous' view on the stack. In other words you will see it when you push another view. Right? – Chris Lundie Jan 31 at 22:50
No, when the rootViewController is the previous on the stack the default behavious is for the childViewControllers back button title to be set to its parents name. – Louis Gerbarg Feb 2 at 1:12
vote up 0 vote down

Your problem is probably very similar to the one described here: http://blog.tmro.net/2009/05/uitabbarbuttonitem-did-not-change-its.html

Try to debug to see if there are any _barButtonItemFlags set for your button...

link|flag
vote up 0 vote down

Possibly already answered, but not simply.

self.navigationItem.backBarButtonItem defaults to nil. So if you set the title to it, nothing will happen because it is affecting a nil address object. This won't throw an error, because objective-c allows messaging nil objects.

ANSWER: You must create your own button object in order to set it's title. You can initWithTitle or create it and then set the title afterward.

PS - as mentioned, the backBarButtonItem only affects it's child views that are pushed on top of it in the navigation stack. Depending on how you have your app architected, the root view can't be popped any further and can't have a back button. Though, you can affect the leftBarButtonItem.

link|flag

Your Answer

Get an OpenID
or

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