Re: NSArrayController -addObjects and undo - [SOLVED]

2009-11-11 Thread jonat...@mugginsoft.com
On 10 Nov 2009, at 22:29, Quincey Morris wrote: > On Nov 10, 2009, at 14:08, jonat...@mugginsoft.com wrote: > >> I accept all of this except that when observing NSArrayController >> -arrangedObjects it seems that NSKeyValueChangeSetting is all you ever get, >> regardless of the nature of the c

Re: NSArrayController -addObjects and undo - [improved but still confused]

2009-11-10 Thread Quincey Morris
On Nov 10, 2009, at 14:08, jonat...@mugginsoft.com wrote: I accept all of this except that when observing NSArrayController - arrangedObjects it seems that NSKeyValueChangeSetting is all you ever get, regardless of the nature of the changes to the underlying content. If you're really gett

Re: NSArrayController -addObjects and undo - [improved but still confused]

2009-11-10 Thread jonat...@mugginsoft.com
On 10 Nov 2009, at 17:52, Quincey Morris wrote: > On Nov 10, 2009, at 05:16, jonat...@mugginsoft.com wrote: > >> On 9 Nov 2009, at 20:58, jonat...@mugginsoft.com wrote: >> >>> My Entry objects are an NSManagedObject subclass. >>> >>> I create an NSArray of N Entries and add them to my array con

Re: NSArrayController -addObjects and undo - [improved but still confused]

2009-11-10 Thread Quincey Morris
On Nov 10, 2009, at 05:16, jonat...@mugginsoft.com wrote: On 9 Nov 2009, at 20:58, jonat...@mugginsoft.com wrote: My Entry objects are an NSManagedObject subclass. I create an NSArray of N Entries and add them to my array controller like so. [self.arrayController addObjects:newEntries]; I

Re: NSArrayController -addObjects and undo - [improved but still confused]

2009-11-10 Thread jonat...@mugginsoft.com
On 9 Nov 2009, at 20:58, jonat...@mugginsoft.com wrote: > My Entry objects are an NSManagedObject subclass. > > I create an NSArray of N Entries and add them to my array controller like so. > [self.arrayController addObjects:newEntries]; > > I am observing [self.arrayController arrangedObjects]

NSArrayController -addObjects and undo

2009-11-09 Thread jonat...@mugginsoft.com
My Entry objects are an NSManagedObject subclass. I create an NSArray of N Entries and add them to my array controller like so. [self.arrayController addObjects:newEntries]; I am observing [self.arrayController arrangedObjects] and receive a single observation following the above call. Ho