我有 ViewController1 ,它使用 segue 来显示 ViewController2 。它们都是 UINavigationController 的一部分。
我在 ViewController2 上有一个按钮,它应该隐藏状态栏。
我查看了几个有关此问题的 Stackoverflow 问题,发现以下问题,但仍然无法正常工作:
在 Info.plist 中将“基于 Controller 的状态栏外观”设置为 true
在 ViewController2 中,我添加了一个方法 override func prefersStatusBarHidden() -> Bool 并返回 true 或 false (基于按钮是否被点击)
当一个按钮被点击以强制状态栏改变被拾取时,我调用 setNeedsStatusBarAppearanceUpdate 。
我读到了 modalPresentationCapturesStatusBarAppearance (需要启用它)。我尝试在 ViewController2 上将其设置为 true prepareForSegue
但是,状态栏仍然显示,prefersStatusBarHidden 从未被调用过。
Best Answer-推荐答案 strong>
问题在于您的 View Controller 位于 UINavigationController 接口(interface)中。因此,运行时向导航 Controller 咨询有关状态栏的信息,而不是您的 View Controller 。
但是,导航 Controller 会依次咨询您的 View Controller ,因此只需说 self.navigationController?.setNeedsStatusBarAppearanceUpdate() 即可设置滚动。它对我来说很好用:
关于ios - 在 iOS 9 的一个 View Controller 上隐藏状态栏,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36671257/
|