Instance Method
インスタンスメソッド
perform(_:with:)
Sends a message to the receiver with an object as the argument.
Required.
必須。
Technology
- Objective-C Runtime
Objective-Cランタイム
Parameters
パラメータ
aSelector
A selector identifying the message to send. If aSelector
is NULL
, an invalidArgumentException
is raised.
anObject
An object that is the sole argument of the message.
Return Value
戻り値
An object that is the result of the message.
Discussion
解説
This method is the same as perform(_:)
except that you can supply an argument for aSelector
. aSelector
should identify a method that takes a single argument of type id. For methods with other argument types and return values, use NSInvocation
.
See Also
参照
Related Documentation
関連文書
func method(for: Selector!) -> IMP!
Locates and returns the address of the receiver’s implementation of a method so it can be called as a function.
あるメソッドのこのレシーバの持つ実装の所在(アドレス)を突き止めて返します、それでそれは関数として呼び出し可能です。