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

makeObjectsPerformSelector:

Sends a message specified by a given selector to each object in the set. 与えられたセレクタによって指定されたメッセージを集合の中の各オブジェクトに送信します。

Declaration 宣言

- (void)makeObjectsPerformSelector:(SEL)aSelector;

Parameters パラメータ

aSelector

A selector that specifies the message to send to the members of the set. The method must not take any arguments. It should not have the side effect of modifying the set. This value must not be NULL. あるセレクタ、それは集合のメンバに送信するメッセージを指定します。このメソッドは、どんな引数もとってはいけません。それは、集合を修正する副作用を持つべきではありません。この値は、NULLであってはいけません。

Discussion 議論

The message specified by aSelector is sent once to each member of the set. This method raises an NSInvalidArgumentException if aSelector is NULL. aSelectorによって指定されるメッセージは、集合の各メンバに対して一度だけ送信されます。このメソッドはNSInvalidArgumentExceptionを引き起こします、aSelectorNULLならば。

See Also 参照

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