変更可能なセットから指定したオブジェクトを取り除きます
-(void)removeObject:(id)anObject:
解説
変更可能なセットから指定したオブジェクトを取り除きます。
返り値
( void )
なし
引数
( id )anObject
オブジェクト
フレームワーク
Foundation
クラス
NSMutableSet
Instance Methods
使用可能
10.0
参照
- removeObject:
- minusSet:
- intersectSet:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSArray *arr = [NSArray arrayWithObjects:@"aaa",@"bbb",@"ccc",nil]; NSMutableSet *set = [NSMutableSet setWithCapacity:1]; NSMutableSet *set2 = [NSMutableSet setWithObjects:@"aaa",@"ccc",nil]; [set addObjectsFromArray:arr]; NSLog([[set allObjects] description]); [set removeObject:@"aaa"]; NSLog([[set allObjects] description]); } @end