Skip to content

Instantly share code, notes, and snippets.

@codeswimmer
Created October 17, 2012 00:54
Show Gist options
  • Select an option

  • Save codeswimmer/3903127 to your computer and use it in GitHub Desktop.

Select an option

Save codeswimmer/3903127 to your computer and use it in GitHub Desktop.
iOS: How to change NavBar back button title
NSUInteger numNavBarItems = self.navigationController.navigationBar.items.count;
if (numNavBarItems > 0) {
UINavigationBar *navBar = self.navigationController.navigationBar;
UINavigationItem *navBarNavItem = [navBar.items objectAtIndex:0];
navBarNavItem.title = NSLocalizedString(@"Back", @"Back");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment