如何检测macOS默认与&之间的切换使用Swift 3的暗模式

时间:2016-08-19 23:19:52

标签: swift selector nsnotificationcenter observers nsdistributednotification

当用户从默认模式切换到黑暗模式时,我想更改状态栏应用程序图标,反之亦然(使用Swift 3)。这是我到目前为止所拥有的:

func applicationDidFinishLaunching(_ aNotification: Notification) {
    DistributedNotificationCenter.default().addObserver(self, selector: #selector(darkModeChanged(sender:)), name: "AppleInterfaceThemeChangedNotification", object: nil)
}

...

func darkModeChanged(sender: NSNotification) {
    print("mode changed")
}

不幸的是,它不起作用。我做错了什么?

4 个答案:

答案 0 :(得分:8)

我成功使用了这个Swift 3语法:

DistributedNotificationCenter.default.addObserver(self, selector: #selector(interfaceModeChanged(sender:)), name: NSNotification.Name(rawValue: "AppleInterfaceThemeChangedNotification"), object: nil)

func interfaceModeChanged(sender: NSNotification) {
  ...
}

答案 1 :(得分:0)

  

Swift 5,Xcode 10.2.1,macOS 10.14.4

很棒的东西。我在@Jeffrey的答案周围的两分钱:

extension Notification.Name {
    static let AppleInterfaceThemeChangedNotification = Notification.Name("AppleInterfaceThemeChangedNotification")
}

所以可以(代替rawValue):

func listenToInterfaceChangesNotification() {
    DistributedNotificationCenter.default.addObserver(
        self,
        selector: #selector(interfaceModeChanged),
        name: .AppleInterfaceThemeChangedNotification,
        object: nil
    )
}

记住@objc属性:

@objc func interfaceModeChanged() {
    // Do stuff.
}

答案 2 :(得分:0)

如果您只需要为暗模式更新图标图像,则可以通过创建自动更新的动态图像来执行此操作而无需通知。

来自Apple的documentation

要创建动态绘制其内容的图像,请使用init(size:flipped:drawingHandler:)方法使用自定义绘图处理程序块来初始化图像。每当系统外观发生变化时,AppKit就会调用您的处理程序块,从而使您有机会使用新外观重新绘制图像。

答案 3 :(得分:0)

所以,我还有一点补充:

enum InterfaceStyle: String {
    case Light
    case Dark
    case Unspecified
}

extension Notification.Name {
    static let AppleInterfaceThemeChangedNotification = Notification.Name("AppleInterfaceThemeChangedNotification")
}

extension NSViewController {
    var interfaceStyle: InterfaceStyle {
        let type = UserDefaults.standard.string(forKey: "AppleInterfaceStyle") ?? "Unspecified"
        return InterfaceStyle(rawValue: type) ?? InterfaceStyle.Unspecified
    }
}

以及NSViewController中的某个地方:

        DistributedNotificationCenter.default.addObserver(forName: .AppleInterfaceThemeChangedNotification,
                                                          object: nil, queue: OperationQueue.main) {
            [weak weakSelf = self] (notification) in                // add an observer for a change in interface style
            weakSelf?.setAppearance(toStyle: weakSelf!.interfaceStyle)
        }

setAppearance对样式的变化有反应。