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

methodSignatureForSelector:

Returns an NSMethodSignature object that contains a description of the method identified by a given selector.

Declaration 宣言

- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector;

Parameters パラメータ

aSelector

A Selector that identifies the method for which to return the implementation address. When the receiver is an instance, aSelector should identify an instance method; when the receiver is a class, it should identify a class method.

Return Value 戻り値

An NSMethodSignature object that contains a description of the method identified by aSelector, or nil if the method can’t be found.

Discussion 解説

This method is used in the implementation of protocols. This method is also used in situations where an NSInvocation object must be created, such as during message forwarding. If your object maintains a delegate or is capable of handling messages that it does not directly implement, you should override this method to return an appropriate method signature.

See Also 参照

Obtaining Information About Methods メソッドについての情報の取得

Related Documentation 関連文書