NSProxy Class Reference
| Inherits from | none (NSProxy is a root class) |
| Conforms to | |
| Framework | /System/Library/Frameworks/Foundation.framework |
| Availability | Available in iOS 2.0 and later. |
| Companion guide | Distributed Objects Programming Topics |
| Declared in | NSProxy.h |
Overview
NSProxy is an abstract superclass defining an API for objects that act as stand-ins for other objects or for objects that don’t exist yet. Typically, a message to a proxy is forwarded to the real object or causes the proxy to load (or transform itself into) the real object. Subclasses of NSProxy can be used to implement transparent distributed messaging (for example, NSDistantObject) or for lazy instantiation of objects that are expensive to create.
NSProxy implements the basic methods required of a root class, including those defined in the NSObject protocol. However, as an abstract class it doesn’t provide an initialization method, and it raises an exception upon receiving any message it doesn’t respond to. A concrete subclass must therefore provide an initialization or creation method and override the forwardInvocation: and methodSignatureForSelector: methods to handle messages that it doesn’t implement itself. A subclass’s implementation of forwardInvocation: should do whatever is needed to process the invocation, such as forwarding the invocation over the network or loading the real object and passing it the invocation. methodSignatureForSelector: is required to provide argument type information for a given message; a subclass’s implementation should be able to determine the argument types for the messages it needs to forward and should construct an NSMethodSignature object accordingly. See the NSDistantObject, NSInvocation, and NSMethodSignature class specifications for more information.
Adopted Protocols
Tasks
Creating Instances
Deallocating Instances
Finalizing an Object
Handling Unimplemented Methods
Introspecting a Proxy Class
Describing a Proxy Class or Object
Class Methods
alloc
Returns a new instance of the receiving class
Availability
- Available in iOS 2.0 and later.
Declared In
NSProxy.hallocWithZone:
Returns a new instance of the receiving class
Return Value
A new instance of the receiving class, as described in the NSObject class specification under the allocWithZone: class method.
Availability
- Available in iOS 2.0 and later.
Declared In
NSProxy.hclass
Returns self (the class object).
Return Value
self. Because this is a class method, it returns the class object
Availability
- Available in iOS 2.0 and later.
Declared In
NSProxy.hrespondsToSelector:
Returns a Boolean value that indicates whether the receiving class responds to a given selector.
Parameters
- aSelector
A selector.
Return Value
YES if the receiving class responds to aSelector messages, otherwise NO.
Availability
- Available in iOS 2.0 and later.
Declared In
NSProxy.hInstance Methods
dealloc
Deallocates the memory occupied by the receiver.
Discussion
This method behaves as described in the NSObject class specification under the dealloc instance method.
Availability
- Available in iOS 2.0 and later.
See Also
Declared In
NSProxy.hdebugDescription
Returns an string containing the real class name and the id of the receiver as a hexadecimal number.
Return Value
A string object containing the real class name and the id of the receiver as a hexadecimal number.
Discussion
This allows this method declared by the NSObject protocol to be implemented in developer classes without causing an issue to be flagged in the iOS and Mac app stores, where otherwise it might look like the developer is overriding a private method in the Foundation Kit.
Implementation of this method is optional, so be sure to test for its existence before attempting to invoke it.
Availability
- Available in iOS 5.0 and later.
Declared In
NSProxy.hdescription
Returns an NSString object containing the real class name and the id of the receiver as a hexadecimal number.
Return Value
An NSString object containing the real class name and the id of the receiver as a hexadecimal number.
Availability
- Available in iOS 2.0 and later.
Declared In
NSProxy.hfinalize
The garbage collector invokes this method on the receiver before disposing of the memory it uses.
Discussion
This method behaves as described in the NSObject class specification under the finalize instance method. Note that a finalize method must be thread-safe.
Availability
- Available in iOS 2.0 and later.
See Also
Declared In
NSProxy.hforwardInvocation:
Passes a given invocation to the real object the proxy represents.
Parameters
- anInvocation
The invocation to forward.
Discussion
NSProxy’s implementation merely raises NSInvalidArgumentException. Override this method in your subclass to handle anInvocation appropriately, at the very least by setting its return value.
For example, if your proxy merely forwards messages to an instance variable named realObject, it can implement forwardInvocation: like this:
- (void)forwardInvocation:(NSInvocation *)anInvocation |
{ |
[anInvocation setTarget:realObject]; |
[anInvocation invoke]; |
return; |
} |
Availability
- Available in iOS 2.0 and later.
Declared In
NSProxy.hmethodSignatureForSelector:
Raises NSInvalidArgumentException. Override this method in your concrete subclass to return a proper NSMethodSignature object for the given selector and the class your proxy objects stand in for.
Parameters
- aSelector
The selector for which to return a method signature.
Return Value
Not applicable. The implementation provided by NSProxy raises an exception.
Discussion
Be sure to avoid an infinite loop when necessary by checking that aSelector isn’t the selector for this method itself and by not sending any message that might invoke this method.
For example, if your proxy merely forwards messages to an instance variable named realObject, it can implement methodSignatureForSelector: like this:
– (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector |
{ |
return [realObject methodSignatureForSelector:aSelector]; |
} |
Availability
- Available in iOS 2.0 and later.
See Also
-
methodSignatureForSelector:(NSObject)
Declared In
NSProxy.h© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-09-19)