views:

330

answers:

1

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?

+1  A: 

Hi Raphael!

Simply write this when you're view is loaded:

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

Should work fine :)

Hope that helps!

blaguman
Great, thanks :)
Raphael Pinto