How to programmatically hide and show status bar in iOS 13?

后端 未结 1 1488
Happy的楠姐
Happy的楠姐 2021-01-23 14:50

I have made following common method for hiding and showing again status bar. It works fine before iOS 13, but I am getting following crash while I run it for device having iOS 1

1条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-23 15:35

    If you want to show/hide the status bar on the different View Controllers you need to:

    1. Add View controller-base status bar appearance option in your Info.plist and set it to YES
    2. Override var prefersStatusBarHidden: Bool in each View Controller where you want to have the status bar shown/hidden
    override var prefersStatusBarHidden: Bool { 
      return true 
    } 
    

    If you want to show/hide it dynamically (ex. after tapping on button), you could do something like this:

    var statusBarHidden = true {
      didSet {
        setNeedsStatusBarAppearanceUpdate()
      }
    }
    
    override var prefersStatusBarHidden: Bool { 
      return statusBarHidden 
    }
    
    • You could find more verbose explanation here Here

    • Also in the Apple Documentation for UIStatusBarManager you can find the following quote:

    You do not use this object to modify the configuration of the status bar. Instead, you set the status bar configuration individually for each of your UIViewController objects. For example, to modify the default visibility of the status bar, override the prefersStatusBarHidden property of your view controller.

    0 讨论(0)
提交回复
热议问题