オブジェクトを追加します
-(void)addObject:(id)anObject
解説
オブジェクトを追加します。
返り値
( void )
なし
引数
( id )anObject
オブジェクト
フレームワーク
Foundation
クラス
NSMutableSet
Instance Methods
使用可能
10.0
参照
- addObjectsFromArray:
- unionSet:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSMutableSet *set = [NSMutableSet setWithCapacity:1]; NSMutableSet *set2 = [NSMutableSet setWithObjects:@"aaa",@"ccc",@"bbb",nil]; [set addObject:@"aaa"]; NSLog([[set allObjects] description]); ([set2 isEqualToSet:set]) ? NSLog(@"YES") : NSLog(@"NO"); } @end