Instance Method
インスタンスメソッド
initWithSet:
Initializes a newly allocated set and adds to it objects from another given set.
新しくアロケートされた集合を初期化して、それに別の与えられた集合からのオブジェクトを加えます。
Declaration
宣言
- (instancetype)initWithSet:(NSSet
<ObjectType> *)set;
Parameters
パラメータ
set
A set containing objects to add to the receiving set. Each object is retained as it is added.
受け手側の集合に加えることになるオブジェクトを含んでいる集合。各オブジェクトは、それが加えられる通りに保有されます。
Return Value
戻り値
An initialized objects set containing the objects from set
. The returned set might be different than the original receiver.
set
からのオブジェクトを含んでいる初期化されたオブジェクト集合。返される集合は、オリジナルのレシーバとは異なるかもしれません。
See Also
参照
Initializing a Set
集合を初期化する
- initWithArray:
Initializes a newly allocated set with the objects that are contained in a given array.
与えられた配列の中に含まれるオブジェクトを持つ、新しくアロケートされた集合を初期化します。
- 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:copyItems:
Initializes a newly allocated set and adds to it members of another given set.
新しくアロケートされた集合を初期化して、それに別の与えられた集合のメンバを加えます。
- init
Initializes a newly allocated set.
新しくアロケートされた集合を初期化します
Related Documentation
関連文書
+ setWithSet:
Creates and returns a set containing the objects from another set.
別の集合からのオブジェクトを含んでいるある集合を作成して返します。