在info中设置
<key>UIUserInterfaceStyle</key>
<string>Light</string>
关闭某个界面黑暗模式
.light
.dark
.unspecified
viewController.overrideUserInterfaceStyle =
app在系统黑暗模式下可以正常显示了。但是仔细看会发现状态栏无法显示!
在项目的target对应的info.plist中添加以下设置:
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
网友评论