Reputation: 4939
Im trying to hide the navigation controller top bar from my storyboard view, because i'm actually hiding it programmatically and when Iloit's getting reescaled in execution time
Here is an image so you can understand it in a better way:
that top bar it's not appearing in my app and I would like to hide it in the storyboard too. Any clue?
Thanks in advance!
Upvotes: 3
Views: 1393
Reputation: 3060
Or you can turn it off using below Code i hope this will work for you !
[self.navigationController setNavigationBarHidden:YES animated:YES];
Upvotes: 0
Reputation: 7410
Select the Navigation Controller, and go to the settings in the right bar :
In the "Navigation Controler" section, uncheck "Shows Navigation Bar", and you're good to go !
Here is what you'll get :
Upvotes: 8