Preferred status bar style of view controller is ignored when in navigation controller(在导航控制器中时,视图控制器的首选状态栏样式被忽略)
问题描述
我正在编写一个具有多个视图的 iOS 应用程序.我已将 App 设置为使用基于 ViewController 的状态栏样式,这允许我使用以下代码
I'm writing an iOS App with multiple views. I've set the App to use ViewController-based status bar style, which allows me to use the following code
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
效果如预期.
然后我将视图嵌入到导航控制器中,并将 BarButtonItem 与 showSegue 连接起来.从此视图的ViewController切换到忽略样式设置,默认显示黑色状态栏.
But then I've embedded the views in a navigation controller and connected a BarButtonItem with a showSegue. Since then the ViewController of the view switched to ignores the style settings and shows the default black status bar.
推荐答案
当你在一个不会被调用的导航控制器中时.导航控制器的 preferredStatusBarStyle 将被调用.与您的代码一起尝试:
When you're in a navigation controller that will not get called. The navigation controller's preferredStatusBarStyle will be called. Try this along with your code:
extension UINavigationController {
open override var preferredStatusBarStyle: UIStatusBarStyle {
return topViewController?.preferredStatusBarStyle ?? .default
}
}
这篇关于在导航控制器中时,视图控制器的首选状态栏样式被忽略的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在导航控制器中时,视图控制器的首选状态栏样式被忽略
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01