Re: Problems with loose ViewController coupling and KVO to-many relationships

2008-10-07 Thread Benjamin Stiglitz
There's a design flaw here somewhere, but I can't quite figure out what it is. It's highlighted by trying to reorder widgets. With KVC to-many relationships, there's no atomic way of moving an object from one position in an array to another : you remove the object, then re-insert it at the new l

Re: Problems with loose ViewController coupling and KVO to-many relationships

2008-10-07 Thread Jonathan del Strother
On Tue, Sep 30, 2008 at 8:19 PM, Jonathan del Strother <[EMAIL PROTECTED]> wrote: > Heya > I'm struggling a bit with NSViewControllers. My app displays a list > of widgets. I have a Widget model, a WidgetView view (an NSView > subclass), and a WidgetViewController (an NSViewController subclass).