解説
アプリケーションをアクティブでなくします。
通常呼び出しません。
返り値
なし
引数
なし
フレームワーク
ApplicationKit
クラス
NSApplication
使用可能
10.0
編集時のバージョン
10.10
関連記事(外部リンク)
例文
#import "Controller.h" @implementation Controller - (IBAction)pushButton:(id)sender { [[NSApplication sharedApplication] deactivate]; } @end
//NSApplication deactivate @IBAction func function049(sender: AnyObject) { //共有アプリケーションインスタンスを取得 let anApplication = MyApplication.sharedApplication() // if (anApplication.active) { NSLog("NSApplication active") anApplication.deactivate() }else{ NSLog("NSApplication not active") } }