Setting statusbarStyle (deprecated in iOS 9.0)

后端 未结 6 1511
北恋
北恋 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:36

    None of the other suggestions worked for me. I ended up getting it to work by:

    1. Setting:

      override var preferredStatusBarStyle : UIStatusBarStyle {
          return .lightContent
      }
      
    2. Calling:

      setNeedsStatusBarAppearanceUpdate()
      

提交回复
热议问题