我想我已经在NSError上发现了一个错误,但想要通过它来运行它们,看看它是否真的只是我做错了。
将描述发送到使用userInfo的NSError实例时,我遇到了崩溃。 如果userInfo设置为nil,说明按预期工作。
NSString* const domain = @"DOMAIN";
NSError* nsError1 = [NSError errorWithDomain:domain code:1 userInfo:nil]; // Not using Dic
NSLog(@"nsError1 description %@",[nsError1 description]);
NSMutableDictionary* errorDetail = [NSMutableDictionary dictionary];
NSString* underlying = [NSString stringWithFormat:@"Error Domain=%@ Code=%d", NSPOSIXErrorDomain, 1];
[errorDetail setObject:underlying forKey:NSUnderlyingErrorKey];
NSError* nsError2 = [NSError errorWithDomain:domain code:1 userInfo:errorDetail]; // Useing Dic
NSLog(@"nsError2 description %@",[nsError2 description]); // CRASH
输出:
2013-04-26 22:36:03.703 CategoryTest[14271:11303] nsError1 description Error Domain=DOMAIN Code=1 "The operation couldn’t be completed. (DOMAIN error 1.)"
2013-04-26 22:37:30.459 CategoryTest[14271:11303] -[__NSCFString localizedDescription]: unrecognized selector sent to instance 0x901cca0
答案 0 :(得分:3)
这是您的代码中的错误,而不是Apple的错误。记录NSUnderlyingErrorKey
以将NSError
对象作为与其对应的值。您的代码应该执行以下操作:
NSError *underlying = [NSError errorWithDomain:NSPOSIXErrorDomain code:1 userInfo:nil];