LoginSignup
0
1

More than 5 years have passed since last update.

Swift:ワークスペースの切り替えを監視する

Posted at

導入

macOSでワークスペース(デスクトップ)が切り替わったタイミングで処理を発火できます.

実装

Appdelegate.swift
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

    func applicationDidFinishLaunching(_ aNotification: Notification) { 
        NSWorkspace.shared.notificationCenter.addObserver(self,
                                                          selector: #selector(changedActiveSpace(_:)),
                                                          name: NSWorkspace.activeSpaceDidChangeNotification,
                                                          object: nil)
    }

    @objc func changedActiveSpace(_ notification: NSNotification) {
        Swift.print("切り替わった")
    }

}

NSWorkspace.activeSpaceDidChangeNotificationを使えばいいだけ

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1