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

makeObjectsPerformSelector:

Sends to each object in the array the message identified by a given selector, starting with the first object and continuing through the array to the last object. 与えられたセレクタによって識別されるメッセージを配列の中の各オブジェクトに送ります、最初のオブジェクトから始めてその配列を最後のオブジェクトまで続けます。

Declaration 宣言

- (void)makeObjectsPerformSelector:(SEL)aSelector;

Parameters パラメータ

aSelector

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

Discussion 議論

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

See Also 参照

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