I am trying to hide status bar in one of my UIViewControllers (Swift 4).
Firstly, I set View controller-based status bar appearance to
When you try to overload statusbar properties for ViewController which in UINavigationStack - you need make extension below
extension UINavigationController {
override open var childForStatusBarStyle: UIViewController? {
return self.topViewController
}
}
then your overloaded properties will became active