gpt4 book ai didi

iOS 13 状态栏样式

转载 作者:行者123 更新时间:2023-12-02 01:03:17 25 4
gpt4 key购买 nike

我想在 iOS 13 上更改每个 ViewController 级别的状态栏样式。到目前为止,我没有任何运气。
我在 info.plist 中将 UIUserInterfaceStyle 定义为 Light (因为我不想支持深色模式),并将 UIViewControllerBasedStatusBarAppearance 设置为 truepreferredStatusBarStyle 在我的 ViewController 上被调用,但完全被忽略。 UIUserInterfaceStyle 似乎总是覆盖 VC 首选项。如何让每个 ViewController 状态栏样式在 iOS 13 上运行?或者不再支持?

最佳答案

iOS 13.2、Swift 5.1

对我来说,之前提到的解决方案没有任何效果。 5个小时后我结束了 modalPresentationCapturesStatusBarAppearance标志。

    destinationNavigationController.modalPresentationCapturesStatusBarAppearance = true
sourceViewController.present(destinationNavigationController, animated: animated, completion: nil)

presented VC 中调用此preferredStatusBarStyle 后。

override var preferredStatusBarStyle: UIStatusBarStyle {
if #available(iOS 13.0, *) {
if traitCollection.userInterfaceStyle == .light {
return .darkContent
} else {
return .lightContent
}
} else {
return .lightContent
}
}

关于iOS 13 状态栏样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57608752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com