美文网首页
iOS13黑暗模式关闭

iOS13黑暗模式关闭

作者: AT19 | 来源:发表于2019-12-03 11:44 被阅读0次

    iOS13黑暗模式关闭,代码如下:

        NSString *version= [UIDevice currentDevice].systemVersion;
        if(version.doubleValue >=13.0) {
            // 针对13.0 以上的iOS系统进行处理
            [self setOverrideUserInterfaceStyle:UIUserInterfaceStyleLight];
        }
    

    相关文章

      网友评论

          本文标题:iOS13黑暗模式关闭

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