Type Method 型メソッド

invocationWithMethodSignature:

Returns an NSInvocation object able to construct messages using a given method signature. 与えられたメソッドシグネチャを使ってメッセージを組み立てることができるNSInvocationオブジェクトを返します。

Declaration 宣言

+ (NSInvocation *)invocationWithMethodSignature:(NSMethodSignature *)sig;

Parameters パラメータ

signature

An object encapsulating a method signature. メソッドシグネチャをカプセル化しているオブジェクト。

Discussion 議論

The new object must have its selector set with NSInvocation and its arguments set with setArgument:atIndex: before it can be invoked. Do not use the alloc/init approach to create NSInvocation objects. 新しいオブジェクトは、NSInvocationで設定されたそれのセレクタ、そしてsetArgument:atIndex:で設定されたそれの引数を持たなければなりません、それが発動されることが可能になる前に。alloc/initの取り組みを使って、NSInvocationオブジェクトを作成してください。

See Also 参照

Related Documentation 関連文書