我正在使用我的iphone应用程序中的ASIHTTPRequest从服务器下载文件
但是我没有得到任何回调,知道在我停止并再次恢复后是否恢复了下载。
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request setAllowResumeForFileDownloads:YES];
[request setDownloadProgressDelegate:pv];
[request setDownloadDestinationPath:path];
[request setTemporaryFileDownloadPath:tempPath];
[request setDidFinishSelector:@selector(requestDone:)];
[request setDidFailSelector:@selector(requestWentWrong:)];
[[self queue] addOperation:request]; //queue is an NSOperationQueue
任何机构现在如何检查下载是否已恢复..
答案 0 :(得分:0)
您是否为请求设置了委托? 如果您发布代码,那将有所帮助。