iOS 状态栏颜色设置
- Add a key "" in your Info.plist file
set "View controller-based status bar appearance" to YES
- Override this method in each of your ViewController
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
BTW:
When you are in Navigation controller that will not get called. You should Override navagation controller's "preferredStatusBarStyle",
extension UINavigationController {
open override var preferredStatusBarStyle: UIStatusBarStyle {
return topViewController?.preferredStatusBarStyle ?? .default
}
}
网友评论