He visto en el código de ejemplo proporcionado por Apple referencias sobre cómo debe manejar los errores de Core Data. Es decir:
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();
}
Pero nunca ejemplos de cómo debe implementarlo.
¿Alguien tiene (o me puede señalar en la dirección de) algún código de "producción" real que ilustre el método anterior?
Gracias de antemano, Matt