William Jockusch
William Jockusch

Reputation: 27335

Iphone navigation bar change title?

How do I change the title text on an Iphone navigation bar?

Upvotes: 0

Views: 2168

Answers (2)

Tchelow
Tchelow

Reputation: 593

You also can use this code:

[[self navigationItem]setTitle:self.title];

Upvotes: -1

kennytm
kennytm

Reputation: 523634

viewController.title = @"title text";

Upvotes: 11

Related Questions