Instance Method インスタンスメソッド

makeObjectsPerformSelector:withObject:

Sends the aSelector message to each object in the array, starting with the first object and continuing through the array to the last object. aSelectorメッセージを配列の中の各オブジェクトに送ります、、最初のオブジェクトから始めてその配列を最後のオブジェクトまで続けます。

Declaration 宣言

- (void)makeObjectsPerformSelector:(SEL)aSelector 
                        withObject:(id)argument;

Parameters パラメータ

aSelector

A selector that identifies the message to send to the objects in the array. The method must take a single argument of type id, and must not have the side effect of modifying the receiving array. 1つのセレクタ、それは配列の中のオブジェクトに送ることになるメッセージを識別します。このメソッドは、ただ1つだけ型idの引数を取らなければなりません、そして受け取っている配列を修正することの副作用を持ってはなりません。

anObject

The object to send as the argument to each invocation of the aSelector method. aSelectorメソッドの各発動に対して引数として送ることになるオブジェクト。

Discussion 議論

This method raises an NSInvalidArgumentException if aSelector is NULL. このメソッドはNSInvalidArgumentExceptionを引き起こします、aSelectorNULLならば。

See Also 参照

Sending Messages to Elements 要素にメッセージを送る