Setting statusbarStyle (deprecated in iOS 9.0)

后端 未结 6 1527
北恋
北恋 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

    In swift4, You can use this block of code below viewDidLoad() in your ViewController-

    override var preferredStatusBarStyle : UIStatusBarStyle {
        return .lightContent
    }
    

提交回复
热议问题