Here is the answer:
In viewDidAppear:animated
(NOT in viewDidLoad
) do the following
- (void)viewDidAppear:(BOOL)animated
{
[self.navigationController.navigationBar.backItem setTitle:@"anything"];
// then call the super
[super viewDidAppear:animated];
}
That if you want to keep the shape of the back button.