美文网首页
Mac开发-禁用暗黑模式以及判断当前模式

Mac开发-禁用暗黑模式以及判断当前模式

作者: 一天天的啊哈哈 | 来源:发表于2023-03-20 15:24 被阅读0次

    Info.plist 里面 NSRequiresAquaSystemAppearance 设置为 YES

    截屏.png

    下面为判断当前模式的方法

    let appearName = NSAppearance.currentDrawing().name
    if appearName == .aqua {
                
    } else {
                
    }
    

    相关文章

      网友评论

          本文标题:Mac开发-禁用暗黑模式以及判断当前模式

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