I'm working with the Xcode Utility template. In rootViewController.m there's a section that sets up the navbar for what's called the FlipSideView:
(snip)
UINavigationItem *navigationItem = [[UINavigationItem alloc] initWithTitle:@"Title"];
(snip)
How can you programatically change the navbar title from within the FlipsideViewController class? I tried:
self.navigationItem.title = @"XXXXXX"; w/o success.
Thanks