public interface Recipient
The NSObject class is a concrete implementation of this interface that contains all of the plumbing necessary to operate in the world of the Objective-C runtime. It is probably best to just subclass NSObject rather than implement your own Recipient class.
NSObject
,
NSProxy Class ReferenceModifier and Type | Method and Description |
---|---|
void |
forwardInvocation(long invocation)
Handles the invocation of a method on the recipient.
|
long |
methodSignatureForSelector(long selector)
Returns the method signature for a specified selector.
|
boolean |
respondsToSelector(long selector)
Checks to see if this object responds to the specified selector.
|
long methodSignatureForSelector(long selector)
selector
- The pointer to the selector to check.void forwardInvocation(long invocation)
invocation
- The NSInvocation object.For a concrete imlementation.
,
forwardInvocation: Method reference (from NSProxy)boolean respondsToSelector(long selector)
selector
-