I have two entities in Core Data (see below), and using NSFetchedResultsController
with [NSPredicate predicateWithFormat:@"calendar.subscribed == 1"];
to extract "Event" object.
Calendar
- subscribed (BOOL)
- events (one-to-many relationship to "Event")
Event
- calendar (many-to-one relationship to "Calendar")
Everything works fine, but if I change subscribed
property of some "Calendar" and save the context in other thread, controllerDidChangeContent
isn't been called.
can I force to refetch? and how?