Instance Method
インスタンスメソッド
makeObjectsPerformSelector:withObject:
Sends a message specified by a given selector to each object in the set.
与えられたセレクタによって指定されたメッセージを集合の中の各オブジェクトに送信します。
Declaration
宣言
- (void)makeObjectsPerformSelector:(SEL)aSelector
withObject:(id)argument;
Parameters
パラメータ
aSelector
A selector that specifies the message to send to the set's members. The method must take a single argument of type id
. The method should not, as a side effect, modify the set. The value must not be NULL
.
あるセレクタ、それは集合のもつメンバに送信するメッセージを指定します。メソッドは、型id
の単一の引数を取らなければなりません。メソッドは、副作用として、集合を修正すべきではありません。値は、NULL
であってはいけません。
argument
The object to pass as an argument to the method specified by aSelector
.
aSelector
によって指定されるメソッドに引数として渡されるオブジェクト。
Discussion
議論
The message specified by aSelector
is sent, with argument
as the argument, once to each member of the set. This method raises an NSInvalidArgumentException
if aSelector
is NULL
.
aSelector
によって指定されるメッセージは、引数としてargument
で、集合の各メンバに対して一度だけ、送信されます。このメソッドはNSInvalidArgumentException
を引き起こします、もしaSelector
がNULL
ならば。
See Also
参照
Accessing Set Members
集合メンバにアクセスする
allObjects
An array containing the set’s members, or an empty array if the set has no members.
集合の持つメンバを含んでいる配列、またはその集合がメンバを持たないならば空の配列。
- anyObject
Returns one of the objects in the set, or nil
if the set contains no objects.
集合の中のオブジェクトの1つを返します、または集合がオブジェクトを含まないならばnil
。
- 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.
与えられたセレクタによって指定されたメッセージを集合の中の各オブジェクトに送信します。
- 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.
あなたに集合の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。