Ho visto nel codice di esempio fornito da Apple riferimenti a come dovresti gestire gli errori di Core Data. Cioè:
NSError *error = nil;
if (![context save:&error]) {
/*
Replace this implementation with code to handle the error appropriately.
abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. If it is not possible to recover from the error, display an alert panel that instructs the user to quit the application by pressing the Home button.
*/
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
Ma mai nessun esempio di come dovresti implementarlo.
Qualcuno ha (o può indicarmi nella direzione di) un codice di "produzione" effettivo che illustri il metodo di cui sopra.
Grazie in anticipo, Matt