[SOLVED]: Re: Can a model key path binding access a super class property

2010-01-17 Thread Grant Christensen
Thanks for the nudge in the right direction James... I went back to the debugger and found an underlying problem with the two variables in the base class that were not coming through. It as a mere coincidence that it was those two in the base class, and I was not setting them correctly in the f

Re: Can a model key path binding access a super class property

2010-01-17 Thread James Bucanek
Grant Christensen wrote (Sunday, January 17, 2010 6:53 AM +1000): In my window I have a NSTableView that is using an array controller to get access to my data. The array controller is bound to an array of BBSMoreSpecific classes. The problem I am having is that

Can a model key path binding access a super class property

2010-01-17 Thread Grant Christensen
Hi all, I have two classes, one defining a few base properties, and another more specific class inheriting from it. Example below: @interface BBSBaseClass : NSObject { NSString*aValue; } @property (readwrite, copy) NSString*aV