Instance Method インスタンスメソッド

initWithObjects:

Initializes a newly allocated set with members taken from the specified list of objects. 新しくアロケートされた集合を初期化します、オブジェクトそれらからなる指定されたリストからとられるメンバを使います。

Declaration 宣言

- (instancetype)initWithObjects:(ObjectType)firstObj, ...;

Parameters パラメータ

firstObj,

The first object to add to the new set. 新しい集合に加えることになる最初のオブジェクト。

...

A comma-separated list of objects, ending with nil, to add to the new ordered set. 新しい順序集合に加えることになる、コンマで区切られた、nilで終わる、オブジェクトのリスト。

If the same object appears more than once in the list, it is represented only once in the returned ordered set. 同じオブジェクトが一度以上このリストに現れるならば、それはただ一度だけこの返される順序集合において表されます。

Return Value 戻り値

An initialized ordered set containing the objects specified in the parameter list. The returned set might be different than the original receiver. パラメータリストにおいて指定されたオブジェクトを含んでいる、初期化された順序集合。返される集合は、オリジナルのレシーバとは異なるかもしれません。

See Also 参照

Initializing an Ordered Set 順序集合を初期化する

Related Documentation 関連文書