使用NSURLConnection sendSynchronousRequest进行错误处理

时间:2010-01-15 02:21:41

标签: iphone error-handling nsurlconnection

如何使用NSURLConnection sendSynchronousRequest进行更好的错误处理?有什么方法可以实现

- (void)connection:(NSURLConnection *)aConn didFailWithError:(NSError *)error

我有一个nsoperation队列,它在后台获取数据,这就是为什么我有同步请求。 如果我必须实现异步请求,那么我该如何等待请求完成。因为没有数据,该方法无法进行。

2 个答案:

答案 0 :(得分:55)

我不会依赖错误是非零来表示发生了错误。

我一直在使用Ben的答案中描述的错误检查,但我相信它在某些情况下会产生误报/虚假错误。

根据这个SO answer,我正在改变使用方法的结果来确定成功/失败。然后(并且只有那时)检查错误指针以了解失败的详细信息。

NSError *requestError;
NSURLResponse *urlResponse = nil;
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&requestError];
/* Return Value
   The downloaded data for the URL request. Returns nil if a connection could not be created or if the download fails.
*/
if (response == nil) {
    // Check for problems
    if (requestError != nil) {
        ...
    }
}
else {
    // Data was received.. continue processing
}

此方法将避免对下载过程中发生的错误做出反应,该错误不会导致失败。我认为在下载过程中可能会遇到在框架内处理的非关键错误,并且它们会产生将错误指针设置为错误对象的副作用。

例如,我一直在收到已下载应用程序的用户报告的POSIX错误,这些错误似乎发生在URL连接的处理过程中。

此代码用于报告错误:

NSString *errorIdentifier = [NSString stringWithFormat:@"(%@)[%d]",requestError.domain,requestError.code];
[FlurryAPI logError:errorIdentifier message:[requestError localizedDescription] exception:nil];

错误显示为:

Platform: iPhone
Error ID: (NSPOSIXErrorDomain)[22]
Msg: Operation could not be completed. Invalid argument

映射回来..

requestError.domain = NSPOSIXErrorDomain
requestError.code = 22
[requestError localizedDescription] = Operation could not be completed. Invalid argument

所有我已经能够挖掘,错误代码22是EINVAL,但是没有产生任何进一步的细节。

我得到的其他错误来自NSURL域,我完全期望在不同的网络条件下:

NSURLErrorTimedOut
NSURLErrorCannotConnectToHost
NSURLErrorNetworkConnectionLost
NSURLErrorNotConnectedToInternet
+others

答案 1 :(得分:29)

-sendSynchronousRequest:returningResponse:error:为您提供了一种在方法本身中获取错误的方法。最后一个参数确实是(NSError **)错误;也就是说,指向NSError指针的指针。试试这个:

NSError        *error = nil;
NSURLResponse  *response = nil;

[NSURLConnection sendSynchronousRequest: req returningResponse: &response error: &error];

if (error) {...handle the error}