オブジェクトを削除します
-(void)removeObjects:(NSArray *)objects:
解説
オブジェクトを削除します。
同一のオブジェクトはすべて削除します。
返り値
( void )
なし
引数
( NSArray * )objects
フレームワーク
ApplicationKit
クラス
NSArrayController
Instance Methods
使用可能
10.3
参照
-removeObject:
-removeObjectsAtArrangedObjectIndexes:
-addObjects:
例文
//複数オブジェクトを削除する [myOutlet removeObjects: [NSArray arrayWithObjects: [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES],@"newKey", @"bbb",@"newKey1", nil], [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES],@"newKey", @"ccc",@"newKey1", nil],nil] ];