Instance Method
インスタンスメソッド
initWithArray:
Initializes a newly allocated set with the objects that are contained in a given array.
与えられた配列の中に含まれるオブジェクトを持つ、新しくアロケートされた集合を初期化します。
Declaration
宣言
- (instancetype)initWithArray:(NSArray
<ObjectType> *)array;
Parameters
パラメータ
array
An array of objects to add to the new set. If the same object appears more than once in array
, it is represented only once in the returned set. Each object receives a retain
message as it is added to the set.
新しい集合に加える、いくつかのオブジェクトからなる配列。同じオブジェクトが一度以上array
に現れるならば、それはただ一度だけこの返される集合において表されます。各オブジェクトは、それが集合に加えられるときretain
メッセージを受け取ります。
Return Value
戻り値
An initialized set with the contents of array
. The returned set might be different than the original receiver.
array
の内容で初期化された集合。返される集合は、オリジナルのレシーバとは異なるかもしれません。
See Also
参照
Initializing a Set
集合を初期化する
- initWithObjects:
Initializes a newly allocated set with members taken from the specified list of objects.
新しくアロケートされた集合を初期化します、オブジェクトそれらからなる指定されたリストからとられるメンバを使います。
- initWithObjects:count:
Initializes a newly allocated set with a specified number of objects from a given C array of objects.
新しくアロケートされた集合を初期化します、与えられたC配列のオブジェクトからの指定された数のオブジェクトを使います。
- initWithSet:
Initializes a newly allocated set and adds to it objects from another given set.
新しくアロケートされた集合を初期化して、それに別の与えられた集合からのオブジェクトを加えます。
- initWithSet:copyItems:
Initializes a newly allocated set and adds to it members of another given set.
新しくアロケートされた集合を初期化して、それに別の与えられた集合のメンバを加えます。
- init
Initializes a newly allocated set.
新しくアロケートされた集合を初期化します
Related Documentation
関連文書
+ setWithArray:
Creates and returns a set containing a uniqued collection of the objects contained in a given array.
与えられた配列の中に含まれるオブジェクトの特有なもののコレクションを含んでいる集合を作成して返します。