Reputation: 77641
Is it possible to set up a KVO trigger for the count of a number of entities in CoreData?
At the moment I'm watching the "DidSaveNotification" but it triggers a lot.
Is there another, better way to do this?
Upvotes: 3
Views: 130
Reputation: 7646
Can you do your tracking in -awakeFromInsert
and -prepareForDeletion
?
Upvotes: 2