macOS/iOS API解説

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

目次

initWithObjects:

INDEX>Foundation>NSSet

複数オブジェクトでセットを初期化して返します
-(id)initWithObjects:(id)anObject...

解説

複数オブジェクトでセットを初期化して返します。

返り値

( id )

セット

引数

( id )anObject...

オブジェクト

クラス

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