I have a Core Data iPhone app that displays Subscription
entities where any of its items
are not read
. In other words, I construct a predicate like this:
[NSPredicate predicateWithFormat:@"ANY items.read == NO"]
While this works for the initial fetch, it doesn't affect Subscription
entities when I modify an Item
, so the NSFetchedResultsController
never reevaluates the Subscription
entities. What would be a better way of structuring this so that the Subscription
entity will be updated whenever an item's read
property is set?
I did try creating a property unreadCount
on Subscription
and using keyPathsForValuesAffectingUnreadCount
to return a set containing items.read
. I didn't expect this to work, and it didn't. I get an exception from _NSFaultingMutableSet
telling me that the read
key is not supported.