Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.