In my iPhone application, I have a tab bar. This tab bar holds a UINavigationController. I have:
self.tabBarItem.title = 'Create New';
and self.title = 'Create New';
self.title = 'Blah';
.But, always, the self.title of the first view controller pushed onto the navigation controller is shown (Blah). How would you set the title of the tab bar item? Thanks, Isaac Waller
I found if I used self.navigationItem.title = 'Blah';
instead of self.title
, it would work.