I have an NSView subclass that requires an array of objects to know how to draw itself.
I can bind an array to it (i.e NSArrayController.arrangedObjects), but it's the values of the properties of each of those objects that determine how this element is to be drawn.
So, if I change a property value in one of those array elements, I'd like the bound NSView to update itself immediately.
Right now, I have to change the NSArrayController's arrangedObjects (i.e. via add/remove) before any changes in that component are seen.
I'd like to know whether I can get my NSView to redisplay if there is a change in one of the object properties, even though currently I'm only bound to the array that this object is in.
Did that make sense? I'm also new to Cocoa Bindings. 4-5 days into it...