美文网首页
UIAlertController支持换肤

UIAlertController支持换肤

作者: 不言弃zxf | 来源:发表于2023-03-26 17:40 被阅读0次

if (@available(iOS 13.0, *)) {

       黑色:

            alertVc.overrideUserInterfaceStyle = UIUserInterfaceStyleDark;

       白色:

            alertVc.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;

       

    } else {

        // Fallback on earlier versions

    }

一切看透,就是这么简单~

相关文章

网友评论

      本文标题:UIAlertController支持换肤

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