import Cocoa class ViewController: NSViewController { override func viewDidLoad() { super.viewDidLoad() // 通知を受け取ることができるように設定する let notificationCenter = NSWorkspace.sharedWorkspace().notificationCenter; notificationCenter.addObserver( self, selector: #selector(receiveSleepNote(_:)), name: NSWorkspaceWillSleepNotification, object: nil ) notificationCenter.addObserver( self, selector: #selector(rece