指定したウインドウをウインドウメニューから削除します
-(void)removeWindowsItem:(NSWindow *)aWindow
解説
指定したウインドウをウインドウメニューから削除します。
返り値
( void )
なし
引数
( NSWindow * )aWindow
ウインドウ
フレームワーク
ApplicationKit
クラス
NSApplication
Instance Methods
使用可能
10.0
参照
- addWindowsItem:title:filename:
- changeWindowsItem:title:filename:
例文
#import "Controller.h" @implementation Controller - (IBAction)pushButton:(id)sender { [NSApp removeWindowsItem:[sender window]]; } @end