- forwardInvocation:
Overridden by subclasses to forward messages to other objects.
これは、メッセージを別のオブジェクトへ転送するためにサブクラスによってオーバーライドされます。
Availability
Technology
+ (BOOL)instancesRespondToSelector:(SEL)aSelector;
aSelector
A Selector.
YES
if instances of the receiver are capable of responding to a
messages, otherwise NO
.
If a
messages are forwarded to other objects, instances of the class are able to receive those messages without error even though this method returns NO
.
To ask the class whether it, rather than its instances, can respond to a particular message, send to the class instead the NSObject
protocol instance method responds
.
- forwardInvocation: