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

By default the back button uses as a text on it a title of a viewcontroller. Can I change text on the back button without changing a title of a view controller? I need this because I have a view controller which title is too long to display and in this case I would like to display just "Back" as a caption for back button.

I tried the following which didn't work:

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

Thanks.

share|improve this question

9 Answers

up vote 77 down vote accepted

Try

self.navigationItem.backBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil] autorelease];

I found that by looking at the backBarButtonItem docs in Apple's docs for UINavigationController.

share|improve this answer
1  
Sorry, I don't have a chance to test this right now, but does this apply the left-pointed shape of the built-in Back buttons, or does it keep the UIBarButtonItem's default rectangular shape? – Marco May 7 '09 at 17:32
I'm actually not sure. I assume that it would just keep the back button shape automatically since you're setting the backButton property, but you'd have to test it to find out. I'm curious, too. – Marc W May 7 '09 at 19:32
2  
Yes, it worked! It yes changes the title, and yes, saves the shape. Thanks for helping. – Ilya Suzdalnitski May 7 '09 at 19:43
1  
Note: the back button is retained twice [1x from alloc, 1x from the property's retain]. However, if you don't change the back button, it's effectively harmless. – Kelvin Jul 30 '09 at 1:17
4  
See Marco's comment below - you should call this on the controller that's about to push something new, not on the controller getting pushed. – Bill May 26 '11 at 22:42
show 7 more comments

Marc W's approach worked great once I figured out which controller to apply it to: the one being re-titled, not the one on top. So if this is the navigation stack:

(bottom)  ControllerA -> ControllerB  (top)

...and you want to give a shorter title for ControllerA in the back-button displayed when ControllerB is on top, you apply the property change to ControllerA.

So it's more in the context of self.title, not like the other left/right-bar-button setters.

share|improve this answer
7  
This is a very important detail. – Bill May 26 '11 at 22:43
Thanks a lot, couldn't get it working until I read this! – Tim Mar 1 '12 at 12:33
Yes, this seems to be consistent with UIBarButton docs for the title property which states "You should set this property before adding the item to a bar." Unfortunately, if you are using storyboards, it is too late to change the button in the prepareForSegue:sender call back for ControllerA. I dunno why IB even offers to set the back button title when this will almost never work. – wcochran Jul 19 '12 at 18:13
wcochran, it does work with storyboard, just make sure that you set Back Button of the parent controller. So if you have controller A that points to controller B (via storyboard segue), than in order to customize text for Back button in controller B, you have to set "Back Button" property for controller A in storyboard editor. – interrupt Mar 5 at 18:03

Thanks Marco... that helped me...

Here is what i did.

If you are using a tableView to navigate to different views... put the code:

self.navigationItem.backBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil] autorelease];

In your didSelectRowAtIndexPath method... of the first Controller... Controller A.

When you navigate to Controller B the button will have the title "Back".

share|improve this answer
Another important detail! – AWrightIV Aug 23 '11 at 7:32
Thanks, exactly what I needed! This should be edited into the accepted answer... – rynah Nov 5 '11 at 20:13
Thank you dear @Ben. That was exactly what I was looking for :). – Arslan Apr 4 '12 at 9:54

You can do it in the storyboard. Find the view controller you want to go back to (the one with the long title), select it's Navigation Item, and open the Attributes Inspector (Alt+Cmd+4), insert the custom Back Button title.

enter image description here

share|improve this answer
1  
This don't work for me. – Rodrigo Apr 22 '12 at 23:54
This was exactly what I needed since I wanted all the back buttons to have the Text "Back" instead of the previous controller's nav titles. – Dave May 10 '12 at 1:59
thanks..it works for me :) – Muzammil Oct 25 '12 at 13:15
worked great thanks – DirectX Mar 25 at 19:19

The back button pulls its text from the title of the parent view controller.

In the parent view controller (the view controller that appears when you tap the back button), set its own title as the desired text on the back button.

For example, let's say we have a RootViewController class. When we click a cell in its table view, we push an instance of SecondViewController. We want the back button of the SecondViewController instance to read, "Home."

in the viewDidLoad method of RootViewController.m:

self.title = @"Home";

in the viewDidLoad method of SecondViewController.m:

UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil];
self.navigationItem.backBarButtonItem = backButton;
[backButton release];    

If you want your back button to read, "Back," set the title of the parent view controller to @"Back";

share|improve this answer

And in MonoTouch the following works (in ViewDidLoad of the parent controller):

NavigationItem.BackBarButtonItem = new UIBarButtonItem( "Back", UIBarButtonItemStyle.Plain, null);
share|improve this answer
[self.navigationItem setBackBarButtonItem:[[UIBarButtonItem alloc]
  initWithTitle:@"Back" style:UIBarButtonItemStyleBordered target:nil action:nil]];

This worked for me.

share|improve this answer

I too had the exact same question. Unfortunately a lot solutions on SO did not work for me, so I developed a solution myself. Please refer to my solution on: http://stackoverflow.com/a/12906437/1560345 . Hope it helps others too. :-)

share|improve this answer

[self.navigationController.navigationBar.backItem setTitle:@"back"];

It works for me. You can replace "back" with something else.

share|improve this answer
When answering with code, always explain what the problem with the provided code was and how your code fixes the issue. – Lukas Knuth Mar 15 at 12:37

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.