複数オブジェクトでセットを初期化して返します
-(id)initWithObjects:(id)anObject...
解説
複数オブジェクトでセットを初期化して返します。
返り値
( id )
セット
引数
( id )anObject...
オブジェクト
フレームワーク
Foundation
クラス
NSSet
Instance Methods
使用可能
10.0
iOS2.0
参照
- initWithArray:
- initWithObjects:count:
- initWithSet:
- initWithSet:copyItems:
+ setWithObjects:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSSet *set = [[NSSet alloc] initWithObjects:@"aaa",@"bbb",@"ccc",nil]; NSLog([[set allObjects] description]); } @end