我想我在 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