iOS 13.0设置禁用 夜间/深色模式

iOS13.0 系统出现深色浅色两者模式,如果不在App开发中配置对应模式UI,可能在深色模式下就无法适配,出现UI错乱。或者你的应用不想支持深色/夜间模式,那就直接禁用吧
1.直接在info.plist添加Appearance并设置为Light就OK了,如图:
样例.png
2.或者在info.plist SourceCode中直接添加以下代码
UIUserInterfaceStyle
Light
3.单个页面设置显示模式
 if #available(iOS 13.0, *) {
    self.overrideUserInterfaceStyle = .dark//dark或light
  }
ps:判断当前显示模式
        if #available(iOS 13.0, *) {
            let userinterFaceStyle = self.traitCollection.userInterfaceStyle
            switch userinterFaceStyle {
            case UIUserInterfaceStyle.dark://深色
                break
            case UIUserInterfaceStyle.light://浅色
                break
            case UIUserInterfaceStyle.unspecified://未明确
                break
                
            default:
                break
            }
        }

你可能感兴趣的:(iOS 13.0设置禁用 夜间/深色模式)