Mac开发-禁用暗黑模式以及判断当前模式
2023-03-20 本文已影响0人
一天天的啊哈哈
截屏.pngInfo.plist 里面 NSRequiresAquaSystemAppearance 设置为 YES
下面为判断当前模式的方法
let appearName = NSAppearance.currentDrawing().name
if appearName == .aqua {
} else {
}
截屏.pngInfo.plist 里面 NSRequiresAquaSystemAppearance 设置为 YES
下面为判断当前模式的方法
let appearName = NSAppearance.currentDrawing().name
if appearName == .aqua {
} else {
}