Re: Core Data To-Many Relationship KVO

2015-02-11 Thread Richard Charles
> On Feb 11, 2015, at 5:36 PM, Roland King wrote: > > processPendingChanges:, it’s on NSManagedObjectContext That’s what I was looking for. Thanks for your help. Richard Charles ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do no

Re: Core Data To-Many Relationship KVO

2015-02-11 Thread Roland King
> On 12 Feb 2015, at 08:27, Richard Charles wrote: > > >> On Feb 11, 2015, at 4:51 PM, Roland King wrote: >> >> committing the core data changes removes them from all the relationships and >> fires KVO changes. see propagatesDeletesAtEndOfEvent: and >> commitPendingChanges. In AppKit usuall

Re: Core Data To-Many Relationship KVO

2015-02-11 Thread Richard Charles
> On Feb 11, 2015, at 4:51 PM, Roland King wrote: > > committing the core data changes removes them from all the relationships and > fires KVO changes. see propagatesDeletesAtEndOfEvent: and > commitPendingChanges. In AppKit usually deletes are propagated once around > the event loop, in othe

Re: Core Data To-Many Relationship KVO

2015-02-11 Thread Roland King
> On 12 Feb 2015, at 07:27, Richard Charles wrote: > > I have a Core Data in-memory store. There is a managed object which uses KVO > on a to-many relationship property of itself. > > When an object at the other end of the relationship is deleted using > [managedObjectContext deleteObject:obj