I have a tab bar application with a different view on each tab. Each view has a UINavigationBar with title set on Interface Builder. I want to change the title based on a cl
In ViewDidLoad of your ViewController.m just write,
self.navigationItem.title=@"Hello World";
Here is the Output: