Reputation: 1856
I added a tabBarCotroller to my app. WhenI run the app in simulator/phone a big bar appears on top of each page. This bar does not appear in the storyboard. How can I remove it? I want the app to extend all the way to the top
Upvotes: 0
Views: 64
Reputation: 510
If you want to hide for all view controllers in the app that share the same UINavigationController
use this
self.navigationController?.isNavigationBarHidden = true
If you are not using a UINavigationController
then try this:
Select your ViewController
and then select
Upvotes: 1