Skip to content

Instantly share code, notes, and snippets.

@dimitris-c
Last active July 5, 2017 16:45
Show Gist options
  • Save dimitris-c/f4401b756d5c2ae3f1aad78d99cb4ee2 to your computer and use it in GitHub Desktop.
Save dimitris-c/f4401b756d5c2ae3f1aad78d99cb4ee2 to your computer and use it in GitHub Desktop.
Allow childViewControllers to change statusBarStyle
extension UINavigationController {
override open var childViewControllerForStatusBarStyle: UIViewController? {
return self.topViewController
}
override open var childViewControllerForStatusBarHidden: UIViewController? {
return self.topViewController
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment