self.title not working iOS 7
For some reason, when I used to just have
self.title = @"Title";
to get the title bar to show up... but now in iOS 7 it won't show anything.
I've been working on this for about 2 hours... and I can't even get the
title bar up and running.
I've also tried
self.navigationController.navigationBar.topItem.title = @"Title";
self.navigationItem.title = @"Title";
none of the above work.
Here is my code:
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Title";
self.navigationItem.title = @"Title";
self.navigationController.navigationBar.topItem.title = @"Title";
// Do any additional setup after loading the view.
}
I don't know what else to try, I just downloaded the latest version of iOS
7 and I used the tab template
No comments:
Post a Comment