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
If the class is a type of UIViewController, then you can set title as given in the viewDidLoad method.
[self setTitle:@"My Title"];