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を引き起こします、もしaSelectorNULLならば。

See Also 参照

Accessing Set Members 集合メンバにアクセスする