An object encapsulating a method signature. メソッドシグネチャをカプセル化しているオブジェクト。
Type Method
型メソッド
invocation
invocationWithMethodSignature:
Returns an
NSInvocation
object able to construct messages using a given method signature.
与えられたメソッドシグネチャを使ってメッセージを組み立てることができるNSInvocation
オブジェクトを返します。
Availability 有効性
- iOS 2.0+
- iPadOS 2.0+
- macOS 10.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
+ (NSInvocation
*)invocationWithMethodSignature:(NSMethodSignature
*)sig;
Parameters パラメータ
signature
Discussion 議論
The new object must have its selector set with NSInvocation
and its arguments set with set
before it can be invoked. Do not use the alloc
/init
approach to create NSInvocation
objects.
新しいオブジェクトは、NSInvocation
で設定されたそれのセレクタ、そしてset
で設定されたそれの引数を持たなければなりません、それが発動されることが可能になる前に。alloc
/init
の取り組みを使って、NSInvocation
オブジェクトを作成してください。