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
Add the following code in viewDidLoad or loadView
self.navigationController.navigationBar.topItem.title = @"Custom text";
I tested it in iPhone and iPad with iOS 9