Now I'm pretty sure there is a way to do this as i saw this post earlier UINavigationabar not hiding but I just want confirmation so i can prove to my developer there is a way to hide the footer nav buttons on a particular view.
I want to hide the buttons on the home view and use big custom buttons instead - he tells me it isn't possible. Seeking a second opinion here.
THanks!
for Disable NavigationBar particular view in Swift
override func viewWillAppear(animated: Bool)
{
self.navigationController?.navigationBarHidden = true
}
for Enable NavigationBar particular view in Swift
override func viewWillAppear(animated: Bool)
{
self.navigationController?.navigationBarHidden = false
}
If you want to Hide Navigation Bar used below line
[[self navigationController] setNavigationBarHidden:YES animated:YES];
If you want to Show Navigation Bar used below line
[[self navigationController] setNavigationBarHidden:NO animated:YES];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With