我正在使用 ASIHTTPRequest 来跟踪下载,但它似乎不起作用。
我正在使用中显示的代码:如何使用 ASIHTTPRequest 跟踪上传/下载进度,但 Xcode 错误提示maxValue cannot be found
。
然后我尝试了:
UIProgressView * myProgressIndicator;
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDownloadProgressDelegate:myProgressIndicator];
[request startSynchronous];
NSLog(@"Value: %f", [myProgressIndicator progress];
这也失败了。有人可以帮忙吗?