I use a UINavigationController in my app and am having an issue with the back button titles. I have the title programmatically set for any page that I push to. On some of the pages the back button will correctly display the previous pages title, but then on select other pages it just says 'back'.
I have a basic implementation on pushing to a new VC:
- (void)pushToNewVC
{
NewVC *newVC = [[NewVC alloc] init];
[self.navigationController pushViewController:newVC animated:YES];
}
In the viewDidLoad of newVC/all of myVC's I have self.title = @"Title".
The problem is that in some cases it works, but then in others in will just say 'Back' rather than the previous pages title.