Re: NSDocument updateChangeCount when using Bindings

2011-01-07 Thread Kevin Bracey
Thank you! As always I had paddled my way out into deep water and missed something important. Key-Valued Coding Programming Guide: Ensuring KVC Compliance Ensuring KVC Compliance, Indexed To-Many Relationship Compliance. Cheers Kevin On 7/01/2011, at 7:39 PM, Quincey Morris wrote: > On Jan 6,

Re: NSDocument updateChangeCount when using Bindings

2011-01-06 Thread Quincey Morris
On Jan 6, 2011, at 18:01, Kevin Bracey wrote: > MyDocument has a > iVar = NSMutableArray *allScenes; > @property( retain ) NSMutableArray *allScenes; > @synthesize allScenes; > > In my nib I have a ArrayController bound to allScenes and it is hooked up to > a Table and and selected Fields, it

Re: NSDocument updateChangeCount when using Bindings

2011-01-06 Thread Markus Spoettl
On Jan 6, 2011, at 9:01 PM, Kevin Bracey wrote: > After hours of searching I have to presume I'm doing something wrong or > missing something obvious, as no one else has this simple problem:-) > OS X 10.6.6 NSDocument Application. > > MyDocument has a > iVar = NSMutableArray *allScenes; > @prop

NSDocument updateChangeCount when using Bindings

2011-01-06 Thread Kevin Bracey
After hours of searching I have to presume I'm doing something wrong or missing something obvious, as no one else has this simple problem:-) OS X 10.6.6 NSDocument Application. MyDocument has a iVar = NSMutableArray *allScenes; @property( retain ) NSMutableArray *allScenes; @synthesize allScene