Iphone – Change title of UINavigationBar created by Interface Builder

iphonetitleuinavigationbar

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?

Best Answer

Simply write this when you're view is loaded:

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

Should work fine :)

Hope that helps!