Setting statusbarStyle (deprecated in iOS 9.0)

后端 未结 6 1515
北恋
北恋 2020-12-13 09:13

Just downloaded the new xCode 10.0 and saw that the old statusBarStyle has been deprecated since iOS 9.0.

Warning: Setter for \'statusBarStyle\

6条回答
  •  天命终不由人
    2020-12-13 09:43

    If you use UINavigationController you also may want to use following code :

    extension UINavigationController {
       open override var preferredStatusBarStyle: UIStatusBarStyle {
          return topViewController?.preferredStatusBarStyle ?? .default
       }
    }
    

    Reason is setNeedsStatusBarAppearanceUpdate() doesn't call childs preferredStatusBarStyle

提交回复
热议问题