アプリケーションの「ウインドウ」メニュー
@property(strong) NSMenu *windowsMenu
var windowsMenu: NSMenu?
解説
アプリケーションの「ウインドウ」メニュー。何もなければ、nil。
引数
フレームワーク
ApplicationKit
クラス
NSApplication
使用可能
10.0
編集時のバージョン
10.10
参照
関連記事(外部リンク)
terminaltabswitching/TerminalTabSwitching.m at master · dabeeeenster/terminaltabswitching · GitHub
例文
#import "Controller.h" @implementation Controller - (IBAction)pushButton:(id)sender { [info setStringValue:[[[[[NSApplication sharedApplication] windowsMenu] itemArray] objectAtIndex:2] title]]; } @end