ฉันเห็นในโค้ดตัวอย่างที่ Apple ให้มาอ้างถึงวิธีจัดการกับข้อผิดพลาดของ Core Data ได้แก่ :
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();
}
แต่ไม่เคยมีตัวอย่างว่าคุณควรนำไปใช้อย่างไร
ใครมี (หรือสามารถชี้ให้ฉันเห็น) รหัส "การผลิต" ที่แท้จริงที่แสดงวิธีการข้างต้น
ขอบคุณล่วงหน้า Matt