Style: NSArrayController communicating with NSViewController

2012-08-03 Thread Arved von Brasch
Hi List, I've been reworking my application and I've found a solution I'm not particularly happy with, and was hoping to get some advice from others. I have several views that are essentially views onto different tables. Each row in the table represents real items in the file system (because

Re: Style: NSArrayController communicating with NSViewController

2012-08-03 Thread Graham Cox
On 03/08/2012, at 5:56 PM, Arved von Brasch co...@atgo.org wrote: I've settled on having the array controller publish values and having the view controller notice by key-value observing. Sounds reasonable. Is there a problem with this approach? --Graham

Re: Style: NSArrayController communicating with NSViewController

2012-08-03 Thread Arved von Brasch
On 2012-08-03, at 18:04 , Graham Cox graham@bigpond.com wrote: On 03/08/2012, at 5:56 PM, Arved von Brasch co...@atgo.org wrote: I've settled on having the array controller publish values and having the view controller notice by key-value observing. Sounds reasonable. Is there a