I am setting the title field of a UIViewController
via Interface Builder/Storyboard:
I tried all of the above methods, even tried manually adding a navigation bar but to no avail.
So this is what worked for me.
Remove any navigation bar item you manually added to the view controller and add this to your viewDidLoad
method
self.navigationController.navigationBar.topItem.title = @"My Title";
or
self.navigationController.topViewController.title = @"My Title";