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