笔者适配了darkMode暗黑模式,但是发现在iOS中如果状态栏为白色,此时app又强行使用非暗黑模式,就会出现看不到状态栏时间等问题
废话不多说直接看解决方案,在iOS的info.plist中添加
<key>UIUserInterfaceStyle</key>
<string>Light</string>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
来源:github
笔者适配了darkMode暗黑模式,但是发现在iOS中如果状态栏为白色,此时app又强行使用非暗黑模式,就会出现看不到状态栏时间等问题
废话不多说直接看解决方案,在iOS的info.plist中添加
<key>UIUserInterfaceStyle</key>
<string>Light</string>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
来源:github