JonLOo
JonLOo

Reputation: 4939

Hide UINavigationController Top bar in storyBoard view

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: enter image description here

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

Answers (2)

Dhiru
Dhiru

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

rdurand
rdurand

Reputation: 7410

Select the Navigation Controller, and go to the settings in the right bar :

enter image description here

In the "Navigation Controler" section, uncheck "Shows Navigation Bar", and you're good to go !

Here is what you'll get :

enter image description here

Upvotes: 8

Related Questions