Xcode Hide white status bar ios 10

前端 未结 5 2087
感情败类
感情败类 2021-01-18 03:26

I want white status bar in my app. For this I set View controller-based status bar appearance to NO and Status bar style to UISt

5条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-18 03:59

    This is the swift version:

    To hide the status bar or change it's appearance, you need to override the following properties in your view controller itself

    override var prefersStatusBarHidden: Bool{
            return true
    }
    

    the above hides the status bar and below if you want to set it to white:

    override var preferredStatusBarStyle: UIStatusBarStyle {
            return .lightContent
    }
    

提交回复
热议问题