1
vote
How do you restart a query using NSFetchedResultsController
Have you set your view controller as the fetched results controller's delegate and implemented the …
1
vote
Save CoreData-entities in NSUserDefaults
If you need to store a reference to a specific managed object, use the URI representation of its managed object ID:
NSURL *moIDURL = [[myManagedObject objectID] URIRepresentation];
…
