nsproxy

Can I autorelease an instance of NSProxy?

Does NSProxy really implement -autorelease and -release? If not, do I need to manually dealloc NSProxy instances? (Please assume that I am not using GC). Thanks for clear this up for me. ...

CORBA on Mac OS X (Cocoa)

I am currently looking into different ways to support distributed model objects (that is, a computational model that runs on several different computers) in a project that initially focuses on Mac OS X (using Cocoa). As far as I know there is the possibility to use the class cluster around NSProxy. But there also seem to be implementatio...

Cocoa, NSProxy, How to take over a method in an object?

I need to replace a method in an object with my own implementation. For example, Person *p; // some object NSMutableArray *array = [NSMutableArray array]; [array addObject: p]; How can I replace addObject with a method of my own? In other words, is there a way to replace the implementation of addObject: of a SPECIFIC object with ano...

Use of NSProxy in cocoa framework and objective C

Can someone tell the use of NSProxy in cocoa framework, objective C and iPhone development? An example would be of more help. ...