I have a strange behaviour when I push detailed View Controller.
I have such a hierarchy View Controllers, all controllers are configured by default.
Only last UIViewController set hidesBottomBarWhenPushed = true
Here is a test project in google drive. I have tested XCode 8, iOS 10, Simulator iPhone SE
Thanks for any help!
following snippet may resolve your issue
self.navigationController?.navigationBar.isTranslucent = false
put above code to your viewDidLoad
of TableViewController
if you want navigationBar
with isTranslucent = true
you can change the window
backgroundColor colour as below
self.window?.backgroundColor = UIColor.white