0

嗨,我正在我的 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

现在任何机构如何检查下载是否恢复..

4

1 回答 1

0

您是否为请求设置了代表?如果您发布代码会有所帮助。

于 2010-05-19T07:05:55.117 回答