Reputation: 279
All is in the title. I want to change the title of my UINavigationBar that I created with Interface Builder ( Navigation Bar + Navigation Item ) in the "awakeFromNib" methode of my view class. But I don't know how to create the link with Interface Builder.
Can you help me?
Upvotes: 2
Views: 5322
Reputation: 134
Simply write this when you're view is loaded:
self.navigationItem.title = @"Your title";
Should work fine :)
Hope that helps!
Upvotes: 6