X上以编程方式检查

X上以编程方式检查

使用objective-c,如何在os x上以编程方式检查系统“请勿打扰”设置的状态?我可以使用黑客或私有api,因为我不需要提交到mac应用商店。

最佳答案

您可以(也应该)简单地使用用户默认值:

let theDefaults = UserDefaults(suiteName: "com.apple.notificationcenterui")
print(theDefaults?.bool(forKey: "doNotDisturb"))

08-28 07:42