I'm new to CoreData concept, and may be I'm getting something wrongly, but I want to fetch fully-qualified array of data from CoreData (not these abstract faults).
My problem is that I displaying a list of objects from CoreData to user in UITableView and at the same time refreshing data in background thread. If user is scrolling TableView at the same time as some of objects were deleted/changed I'm getting CoreData could not fulfill a fault
exception
Thanks
Ok, it is actually easy, need to set request's property ReturnsObjectsAsFaults
to NO
like this:
[request setReturnsObjectsAsFaults:NO];
I'ts strange nobody answered this simple question
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With