macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

removeWindowsItem:

INDEX>AppKit>NSApplication

指定したウインドウをウインドウメニューから削除します

Objective-C

- (void)removeWindowsItem:(NSWindow *)aWindow

Swift

func removeWindowsItem(_ aWindow: NSWindow)

解説

指定したウインドウをウインドウメニューから削除します。

返り値

なし

引数

Objective-C

( NSWindow * )aWindow

Swift

_ aWindow: NSWindow

ウインドウ

フレームワーク

ApplicationKit

クラス

NSApplication

使用可能

10.0

編集時のバージョン

10.10

関連記事(外部リンク)

例文

#import "Controller.h"

@implementation Controller

- (IBAction)pushButton:(id)sender
{
	
	[NSApp removeWindowsItem:[sender window]];
	
}

@end

Swift

//NSApplication removeWindowsItem
    @IBAction func function043(sender: AnyObject) {
        //共有アプリケーションインスタンスを取得
        let anApplication = MyApplication.sharedApplication()
        //
        anApplication.removeWindowsItem(newWindow)
        NSLog("NSApplication removeWindowsItem")
    }