Created
December 5, 2016 10:55
-
-
Save diederikh/9ad97c4cd05c42f46bf174246ef00365 to your computer and use it in GitHub Desktop.
preferredStatusBarStyle extension for nav controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension UINavigationController { | |
open override var preferredStatusBarStyle: UIStatusBarStyle { | |
return topViewController?.preferredStatusBarStyle ?? .default | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment