Re: KVC array proxy objects

2009-05-06 Thread Aaron Braunstein
ou've declared the songs array as a @property on the class then it will use that first for its' data access. [1] http://developer.apple.com/documentation/Cocoa/Conceptual/KeyValueCoding/Concepts/SearchImplementation.html On May 5, 2009, at 8:53 AM, Aaron Braunstein wrote: I

KVC array proxy objects

2009-05-05 Thread Aaron Braunstein
I'm trying to understand how the proxy object which is returned from mutableArrayValueForKey: works and I've hit a bit of a wall. I get what the proxy is and why it exists. I have a test app which allows me to do things to/with the collection it represents and it all works fine. The pro