现在用户只会收到类似“错误代码5”的错误消息。
NSString *errorString = [NSString stringWithFormat:@"Error code %i", [parseError code]];
UIAlertView *errorAlert = [[UIAlertView alloc] initWithTitle:@"Error loading content" message:errorString delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[errorAlert show];
所以NSXMLParserError代码对我来说还不够。我宁愿像“NSXMLParserPrematureDocumentEndError”或“文档意外结束”。
有一种简单的方法吗?
干杯
答案 0 :(得分:0)
localizedDescription
,localizedFailureReason
等方法
NSString *errorString = [parserError localizedDescription];