You need to change the title of the "back" button to "Back" in the next controller. I use the following in prepareForSegue before calling the controller via segue:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([[segue identifier] isEqualToString:@"showSaveProductDifficultTVC"]) { UIBarButtonItem *backButton = [[UIBarButtonItem alloc]initWithTitle:NSLocalizedString(@"Назад", returnbuttontitle) style: UIBarButtonItemStylePlain target:nil action:nil]; self.navigationItem.backBarButtonItem = backButton; } In the end, instead of "Back" I have shown "back". This happens only with the word "Back" or other Russian words, if you use any nonsense, for example, @b, then everything is fine.
What could be the problem.
Addition:
The problem in my case was that the application tested on the iPhone 4S, where the navigationItemBar did not include the Back, Save and title buttons. And if you shorten the title or the name of the navigationItemBar buttons, or expand the device, then everything is fine.






