I have an application which uses a main story board to include a Navigation Controller where the main view is a Table View using a prototype cell content. Each cell in the
If you have a tab bar controller, try this:
self.tabBarController.navigationItem.title = @"Title";
it is the right way. it will work.
I'm doing something similar in an app I'm working on. Here's how I'm setting the title:
[[self navigationItem] setTitle:@"My View's Title"];
I thinkt the dot notation equivalent would be something like this:
self.navigationItem.title = @"My View's Title";
Hope that helps.