我正在尝试发布用户 ID 和密码并使用HttpRequest
. 我得到了预期的结果,但客户报告说应用程序在身份验证后崩溃。他发送了一段视频,展示了该应用程序是如何崩溃的。由此我得出结论,nserror
在 uialertview 中显示消息后,应用程序崩溃了
- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError
我收到的错误消息是“操作无法完成。(NSXMLParserErrorDomain
错误39
。)”
在警报视图中显示此消息后,应用程序突然崩溃。无论如何,我不会面临这次崩溃。谁能帮我解决这个问题。提前致谢。
我使用的代码parseErrorOccured
是
NSString *errorMessage = [error localizedDescription];
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Connection Error!" message:errorMessage
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
[alertView release];