Ios – How to set the title of a Navigation Bar programmatically

iosiphoneuinavigationbarview

I have a Navigation Bar in a view, and I want to change its Navigation Item title programmatically.

How is this done?

Best Answer

In your UIViewController

self.navigationItem.title = @"The title";