macOS/iOS API解説

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

目次

addObjects:

複数のオブジェクトをレシーバに追加します
-(void)addObjects:(NSArray *)objects:

解説

複数のオブジェクトをレシーバに追加します。

返り値

( void )

なし

引数

( NSArray * )objects

フレームワーク

ApplicationKit

クラス

NSArrayController

Instance Methods

使用可能

10.3

参照

-addObject:
-insertObjects:atArrangedObjectIndexes:
-removeObjects:

例文

//複数オブジェクトを追加する
[myOutlet addObjects:
    [NSArray arrayWithObjects:
        [NSDictionary dictionaryWithObjectsAndKeys:
            [NSNumber numberWithBool:YES],@"newKey",
            @"xxx",@"newKey1",
            nil],
        [NSDictionary dictionaryWithObjectsAndKeys:
            [NSNumber numberWithBool:YES],@"newKey",
            @"yyy",@"newKey1",
            nil],nil]
    ];