Reputation: 27335
How do I change the title text on an Iphone navigation bar?
Upvotes: 0
Views: 2168
Reputation: 593
You also can use this code:
[[self navigationItem]setTitle:self.title];
Upvotes: -1
Reputation: 523634
viewController.title = @"title text";
Upvotes: 11