我试图使用NSURLConnection下载文件我已经准备好了url请求,委托方法等。我还将超时设置为15.0并且我在主线程上触发下载,代码如下:
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:urlRequest delegate:self];
[connection start];
这段代码工作得很好但是如果没有来自服务器的响应,则没有回调委托方法来处理错误。
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
此致
答案 0 :(得分:0)