- How do I hide the navigation bar on my navigation controller?
- How to hide navigation bar in Objective C?
- How do I unhide navigation bar in Swift?
How do I hide the navigation bar on my navigation controller?
When set to true , the hidesBarsOnTap property of a navigation controller automatically adds a tap gesture recognizer to your view to handle hiding (and showing) the navigation bar as needed. Remember to set this back to false when you want to stop the behavior from happening.
How to hide navigation bar in Objective C?
So you need to set the navigation bar to be hidden right after you create the navigation controller for that tab. You cannot adjust this after you push the view controller (as far as I know). [[self navigationController] setNavigationBarHidden:YES animated:YES];
How do I unhide navigation bar in Swift?
iOS Notes 8: How to Show/Hide NavigationBar in ViewController [UPDATED] Hey, If you need to hide or make your navigation bar visible on your ViewController(VC), you simply do that in the “viewWillAppear” and “viewWillDisappear” functions.