I'm pretty much confused with hiding navigation bar.
In most of the UIViewController I'm using:
self.navigationController?.navigationBar.isHidden = true
But some times UINavigationBar is not hidden or visible.
Instead, if I use:
self.navigationController?.isNavigationBarHidden = true
I can hide or show UINavigationBar.
What's the difference between above properties?