Skip to content

Instantly share code, notes, and snippets.

@kelp404
Last active October 13, 2015 17:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kelp404/4231104 to your computer and use it in GitHub Desktop.
Save kelp404/4231104 to your computer and use it in GitHub Desktop.
Change the text of the back button in navigationbar

##Back button'text in navigationbar ###Objective-C

UIViewController *controller = [[UIViewController alloc] initWithNibName:@"view" bundle:nil];
UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithTitle:@"back" style:UIBarButtonItemStyleBordered target:nil action:nil];
[self.navigationItem setBackBarButtonItem:backItem];
[self.navigationController pushViewController:controller animated:YES];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment