macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

initWithSet:copyItems:

セットからセットを初期化して返します
-(id)initWithSet:(NSSet *)otherSet
          copyItems:(BOOL)flag

解説

セットからセットを初期化して返します。flagがYESならコピーされます。

返り値

( id )

オブジェクト

引数

( NSSet * )otherSet

セット

( BOOL )flag

YES/NO

クラス

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