记录NSError
的最佳方式是什么?
- (void)checkThing:(Thing *)thing withError:(NSError *)error {
NSLog(@"Error: %@", error);
}
给我一条null
条消息
答案 0 :(得分:110)
答案 1 :(得分:19)
NSLog(@"Error: %@", error);
给我一条空信息
然后error
是nil
,而不是NSError实例。
答案 2 :(得分:2)
这是我用来在开发过程中记录错误的粗略方法; (不适用于Cocoa-touch)
// Execute the fetch request put the results into array
NSError *error = nil;
NSArray *resultArray = [moc executeFetchRequest:request error:&error];
if (resultArray == nil)
{
// Diagnostic error handling
NSAlert *anAlert = [NSAlert alertWithError:error];
[anAlert runModal];
}
NSAlert负责显示错误。