美文网首页
iOS Status Bar Text Color

iOS Status Bar Text Color

作者: VincentZhou | 来源:发表于2018-12-20 11:25 被阅读9次

iOS 状态栏颜色设置

  1. Add a key "" in your Info.plist file
set "View controller-based status bar appearance" to YES
  1. 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
   }
}

相关文章

网友评论

      本文标题:iOS Status Bar Text Color

      本文链接:https://www.haomeiwen.com/subject/jotykqtx.html