How to change the UINavigationController back button name?

IosUiviewcontrollerUinavigationcontrollerUinavigationitem

Ios Problem Overview


I have a UIViewController and I'm navigating from my first view controller to second view controller and I want to change the name of the button shown on the navigationcontroller for going back ....

SecondViewController *secondController = [[SecondViewController alloc]
                                              initWithNibName:nil
                                              bundle:NULL]; 
[self.navigationController pushViewController:secondController  animated:YES];

now in the second viewcontroller I want change the name of the button in the navigationController.

Ios Solutions


Solution 1 - Ios

If you wish to do this programmatically, it can be done like this:

Objective-C

UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithTitle:@"Custom"
															 style:UIBarButtonItemStyleBordered
															target:nil
															action:nil];

[self.navigationItem setBackBarButtonItem:backItem];

Swift

let backItem = UIBarButtonItem(title: "Custom", style: .Bordered, target: nil, action: nil)
navigationItem.backBarButtonItem = backItem

However, if you prefer using Interface Builder, just select the UINavigationItem that you wish to set the back button for, and navigate to the attributes inspector to change the back button's title.

enter image description here

NOTE: It is important to remember that you must configure this on the view controller that you would be returning to upon tapping the back button, not the currently visible view controller.

Solution 2 - Ios

There is an easy way of doing that in Interface Builder or Storyboarding. In the parent View Controller, just set the attribute "Back Button" of the navigation item to whatever title you want. Here is an example:

Set Back Button Title of child view controller form parent view controller

Villian's Tavern View will have "Back" as Back Button Title, like we just set in the attributes inspector of the parent's navigation controller (Best Bars).

Solution 3 - Ios

In viewWillAppear write this

self.navigationItem.title = @"List View";

And in ViewWilldisapper write this

self.navigationItem.title = @"Back";

It works without story boards.

Solution 4 - Ios

In my case it only worked running the code on the Main Thread, like so:

dispatch_async(dispatch_get_main_queue(), ^(void) {
    
    self.navigationController.navigationBar.backItem.title = @"Custom Title";
});

Solution 5 - Ios

Swift 3:

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
	let backItem = UIBarButtonItem()
	backItem.title = "Back"
	navigationItem.backBarButtonItem = backItem // This will show in the next view controller being pushed
}

Note:The back button belongs to the previous view controller, not the one currently presented on screen. To modify the back button you should update it before pushing, on the view controller that initiated the segue:

Solution 6 - Ios

I'm on ViewController1 and going to ViewController2, If I wants to change name of back button showing on ViewController2, I will do this in ViewController2.

Swift 5

self.navigationController?.navigationBar.topItem?.title = "BackButtonTitle"

Objective-C

self.navigationController.navigationBar.topItem.title = @"BackButtonTitle";

Solution 7 - Ios

In Swift I found solution very simple,

Suppose I'm on ViewControllerA and going to ViewControllerB, If I wants to change name of back button showing on ViewControllerB, I will do this in ViewControllerA,

self.title = "BackButtonTitle"

That's it.

Note:- This will change title of ViewControllerA

Solution 8 - Ios

It is very important that in view controller "Simulated Metrics" option is not selected as "Inferred".

I tried with "None" and all it's right!

Solution 9 - Ios

Try like this:-

NSArray *viewControllerArr = [self.navigationController viewControllers];
// get index of the previous ViewContoller
long previousViewControllerIndex = [viewControllerArr indexOfObject:self] - 1;
UIViewController *previous;
if (previousViewControllerIndex >= 0) {
    previous = [viewControllerArr objectAtIndex:previousViewControllerIndex];
    previous.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc]
                                                 initWithTitle:@"Back"
                                                 style:UIBarButtonItemStylePlain
                                                 target:self
                                                 action:nil];
}

Solution 10 - Ios

Actually, you can change title of back button:

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

Solution 11 - Ios

If you use Storyboard references, the View Controller might not display the Navigation Item on Interface Builder.

Manually dragging a Navigation Bar will not work, you need to drag a Navigation Item

You'll then be able to set its back button's title. This is also where you'll set the view's title.

Quoting Mick MacCallum:

NOTE: It is important to remember that you must configure this on the view controller that you would be returning to upon tapping the back button, not the currently visible view controller.

Solution 12 - Ios

You can achieve this by using titleView of navigationItem

Swift 3 Answer

• Create one extension for UINavigationItem as Below

extension UINavigationItem {
    func customTitle(title: String) {
        let titleLabel = UILabel()
        titleLabel.text = title
        titleLabel.textColor = UIColor.white
        titleLabel.textAlignment = .center
        titleLabel.sizeToFit()
        titleView = titleLabel
    }
}

• In your controllers viewDidLoad do the following

override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        title = "Text For Back Button"
        navigationItem.customTitle(title: "Title for your view controller")
}

Solution 13 - Ios

Try Below Code :

[self.navigationItem setValue:@[@"customTitle",@""] forKey:@"abbreviatedBackButtonTitles"];

Solution 14 - Ios

If you use Storyboard, there is a easy way to do this (it worked fine for me).

  • Go to your storyboard
  • Select which UIViewController you want to change the back button text.
  • Click on the UINavigationItem on the top of your UIViewController. (the one with the title)
  • On the Right panel, select the attribute inspector (the 4th icon).
  • Now you can set the Title, Prompt and Back Button texts.

enter image description here

Source: http://pinkstone.co.uk/how-to-change-the-back-button-text-on-a-uinavigationcontroller-in-your-storyboard/

Solution 15 - Ios

There are two ways to do this.

First way is by program code:

Yakimenko Aleksey's answer is the simplest way, This really works ( tested on Xcode 8 + iOS 10)

Swift3:

self.navigationItem.backBarButtonItem?.title = "Your customized back title"

Note: you should call above code in source view controller, not the destination view controller.

Second way is use storyboard localization via Main.strings file,

"nnnnnnn.title" = "localized string";

The nnnnnnn means the object id of the BackBarButtonItem in the source view controller(not the destination view controller!)

You need set the "back" property of the navigation bar item, it will auto create a BarButtonItem, you find its object id.

Sorry, i failed to upload screenshots.

Solution 16 - Ios

I had a rather complex storyboard with many navigation controllers, and my customer wanted all of the back buttons to say "Back"

I went through in Interface Builder and put "Back" into the Back button field of every UINavigationItem.

I was not working for every scene change!

The problem was that not every view controller in the storyboard had a UINavigationItem.

I fixed this by dragging out a new UINavigationItem onto every UIViewController that did not have one, and setting all of the Back button fields to "Back"

Watch out for the controllers that are not given their own UINavigationItem automatically.

Solution 17 - Ios

Swift 4

In your UIViewController, set this:

let backButton = UIBarButtonItem()
backButton.title = "[Your title here]"
self.navigationItem.backBarButtonItem = backButton

Solution 18 - Ios

In Xcode 12 UINavigationItem has the backButtonTitle property

var backButtonTitle: String? { get set }

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBullaView Question on Stackoverflow
Solution 1 - IosMick MacCallumView Answer on Stackoverflow
Solution 2 - IosRogerView Answer on Stackoverflow
Solution 3 - IosTendulkarView Answer on Stackoverflow
Solution 4 - IosneowinstonView Answer on Stackoverflow
Solution 5 - IosAnilView Answer on Stackoverflow
Solution 6 - Iossaid altintopView Answer on Stackoverflow
Solution 7 - IosMohammad Zaid PathanView Answer on Stackoverflow
Solution 8 - IosjavifernandezrView Answer on Stackoverflow
Solution 9 - IosHussain ShabbirView Answer on Stackoverflow
Solution 10 - IosYakimenko AlekseyView Answer on Stackoverflow
Solution 11 - IosLucasView Answer on Stackoverflow
Solution 12 - IosLeojinView Answer on Stackoverflow
Solution 13 - IosCharmingQinView Answer on Stackoverflow
Solution 14 - IosLuisView Answer on Stackoverflow
Solution 15 - Iososexp2003View Answer on Stackoverflow
Solution 16 - IosDrSmartView Answer on Stackoverflow
Solution 17 - IosBen-hur OttView Answer on Stackoverflow
Solution 18 - IosBlazej SLEBODAView Answer on Stackoverflow