Core Data 오류를 처리하는 방법에 대한 Apple 참조에서 제공하는 예제 코드를 보았습니다. 즉 :
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