How to get complete objects (not errors) from CoreData?

I'm new to the concept of CoreData, and maybe I'm getting something wrong, but I want to get a fully qualified dataset from CoreData (not these abstract errors).

My problem is that I am showing a list of objects from CoreData for the user in a UITableView and while updating the data in the background thread. If the user scrolls through the TableView while deleting / changing some objects, I get an exceptionCoreData could not fulfill a fault

thank

+5
source share
1 answer

Ok, this is really easy, you need to set the request property ReturnsObjectsAsFaultstoNO

like this:

[request setReturnsObjectsAsFaults:NO];

I am strange that no one answered this simple question

+15
source

All Articles