initWithSet:copyItems:
セットからセットを初期化して返します
-(id)initWithSet:(NSSet *)otherSet copyItems:(BOOL)flag
解説
セットからセットを初期化して返します。flagがYESならコピーされます。
返り値
( id )
オブジェクト
引数
( NSSet * )otherSet
セット
( BOOL )flag
YES/NO
フレームワーク
Foundation
クラス
NSSet
Instance Methods
使用可能
10.0
参照
- initWithArray:
- initWithObjects:
- initWithObjects:count:
- initWithSet:
+ setWithSet:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSArray *arr = [NSArray arrayWithObjects:@"aaa",@"bbb",@"ccc",nil]; NSSet *set = [NSSet setWithArray:arr]; NSSet *set2 = [[NSSet alloc] initWithSet:set copyItems:YES]; NSLog([[set2 allObjects] description]); } @end