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
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.