美文网首页
我的ios笔记之禁止暗黑模式

我的ios笔记之禁止暗黑模式

作者: 猪都跑不过的狗 | 来源:发表于2021-11-03 10:09 被阅读0次

    plist文件设置

    <key>UIUserInterfaceStyle</key>

    <string>Light</string>

    上面的UIUserInterfaceStyle会变成Appearance正常现象

    为了防止他以后变

    在你得基础类里添加代码

    swift版

     self.overrideUserInterfaceStyle = .light

    OC版

    self.overrideUserInterfaceStyle=UIUserInterfaceStyleLight;

    然后再自定义的tabbarController里面添加代码

    let  backView =UIView.init(frame:CGRect.init(x:0, y:0, width:SCREEN_WIDTH, height:TABBAR_HEIGHT))

    backView.backgroundColor=UIColor.white

    self.tabBar.insertSubview(backView, at:0)

    OC同理

    相关文章

      网友评论

          本文标题:我的ios笔记之禁止暗黑模式

          本文链接:https://www.haomeiwen.com/subject/ccvqzltx.html