The \"back button\" of a UINavigationController by default shows the title of the last view in the stack. Is there a way to have custom text in the back button
UINavigationController
- (void)viewDidLoad { [super viewDidLoad]; UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil]; self.navigationItem.backBarButtonItem = backButton; [backButton release]; }