Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide navigation bar in storyboard

Can anyone tell me how to hide the navigation bar in my storyboard. My code below is working fine when running in the simulator but it still appears in my storyboard which is really annoying me as it's messing around with the placement of my images. Can anyone help?

- (void) viewWillAppear:(BOOL)animated {     [super viewWillAppear:animated];     [self.navigationController setNavigationBarHidden:YES animated:animated]; }  - (void) viewWillDisappear:(BOOL)animated {     [super viewWillDisappear:animated];     [self.navigationController setNavigationBarHidden:NO animated:animated]; } 
like image 604
garethdn Avatar asked May 16 '12 14:05

garethdn


People also ask

How do I hide navigation bar in Swift storyboard?

Click on the controller that has the top bar navigate to the properties bar on the right hand side of Xcode. There is a drop down labeled Top Bar (as shown above) change this drop down to none.

How do I hide the navigation bar?

Way 1: Touch “Settings” -> “Display” -> “Navigation bar” -> “Buttons” -> “Button layout”. Choose the pattern in “Hide navigation bar” -> When the app opens, the navigation bar will be automatically hidden and you can swipe up from the bottom corner of the screen to show it.

How do I hide the navigation bar in Apple?

Go to the Attributes Inspector and in the Image View section set the image to sunset_small. The Storyboard should look like this. The hidesBarsOnTap boolean of the Navigation Controller is set to true to enable hiding the Navigation Bar on tap.

How do I hide the navigation bar in react native?

To hide the navigation navbar with React Native, we set the screenOptions. headerShown option to false .


1 Answers

enter image description here

Click on the controller that has the top bar navigate to the properties bar on the right hand side of Xcode. There is a drop down labeled Top Bar (as shown above) change this drop down to none.

like image 56
shoughton123 Avatar answered Sep 22 '22 06:09

shoughton123