allObjects
An array containing the set’s members, or an empty array if the set has no members.
集合の持つメンバを含んでいる配列、またはその集合がメンバを持たないならば空の配列。
- containsObject:
Returns a Boolean value that indicates whether a given object is present in the set.
あるブール値を返します、それは与えられたオブジェクトが集合の中に存在するかどうかを指し示します。
- filteredSetUsingPredicate:
Evaluates a given predicate against each object in the receiving set and returns a new set containing the objects for which the predicate returns true.
与えられた述部を受け手側の集合の中の各オブジェクトに対して評価して、その述部に対してtrueを返すオブジェクトを含んでいる新しい集合を返します。
- makeObjectsPerformSelector:
Sends a message specified by a given selector to each object in the set.
与えられたセレクタによって指定されたメッセージを集合の中の各オブジェクトに送信します。
- makeObjectsPerformSelector:withObject:
Sends a message specified by a given selector to each object in the set.
与えられたセレクタによって指定されたメッセージを集合の中の各オブジェクトに送信します。
- member:
Determines whether a given object is present in the set, and returns that object if it is.
与えられたオブジェクトが集合の中に存在するかどうか判定します、そしてそれが存在するならばそのオブジェクトを返します。
- objectEnumerator
Returns an enumerator object that lets you access each object in the set.
あなたに集合の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。
- enumerateObjectsUsingBlock:
Executes a given block using each object in the set.
与えられたブロックを集合の中の各オブジェクトを使って実行します。
- enumerateObjectsWithOptions:usingBlock:
Executes a given block using each object in the set, using the specified enumeration options.
与えられたブロックを集合の中の各オブジェクトを使って実行します、指定された列挙オプションを使います。
- objectsPassingTest:
Returns a set of objects that pass a test in a given block.
- objectsWithOptions:passingTest:
Returns a set of objects that pass a test in a given block, using the specified enumeration options.