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

invokeWithTarget:

Sets the receiver’s target, sends the receiver’s message (with arguments) to that target, and sets the return value. レシーバの持つターゲットを設定します、レシーバの持つメッセージを(引数とともに)送り出します、そして戻り値を設定します。

Declaration 宣言

- (void)invokeWithTarget:(id)target;

Parameters パラメータ

anObject

The object to set as the receiver's target. レシーバのもつ目標として設定されることになるオブジェクト。

Discussion 議論

You must set the receiver’s selector and argument values before calling this method. あなたは、このメソッドを呼び出す前に、レシーバのもつセレクタそして引数値を設定しなければなりません。

See Also 参照

Dispatching an Invocation 発動を転送する

Related Documentation 関連文書