macOS/iOS API解説

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

目次

removeSelectedObjects:

指定したオブジェクトを選択から外します
-(BOOL)removeSelectedObjects:(NSArray *)objects:

解説

指定したオブジェクトを選択から外します。

返り値

( BOOL )

YES/NO

引数

( NSArray * )objects

フレームワーク

ApplicationKit

クラス

NSArrayController

Instance Methods

使用可能

10.3

参照

-addSelectedObjects:

例文

//選択から取り除きます
- (IBAction)removeSelectedObj:(id)sender;
{
//選択から取り除きます
[myOutlet removeSelectedObjects:
    [NSArray arrayWithObjects:
        [NSDictionary dictionaryWithObjectsAndKeys:
            [NSNumber numberWithBool:YES],@"newKey",
            @"xxx",@"newKey1",
            nil],
        [NSDictionary dictionaryWithObjectsAndKeys:
            [NSNumber numberWithBool:YES],@"newKey",
            @"yyy",@"newKey1",
            nil],nil]
    ];
}