我有一个问题是使用ASIHTTPRequest跟踪上传/下载进度
这是来自ASIHTTPRequest网站的示例
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDownloadProgressDelegate:myProgressIndicator];
[request startSynchronous];
NSLog(@"Max: %f, Value: %f", [myProgressIndicator maxValue],[myProgressIndicator doubleValue]
它说: myProgressIndicator是一个NSProgressIndicator。
但是看起来苹果不赞成使用 NSProgressIndicator
Check Here
所以...我怎么知道上载/下载进度?
还有另一个问题是...如果任务完成之前上载/下载已终止
如何让上载/下载任务从停止点(断点?)开始继续?
非常感谢〜
最佳答案
如文档所述,在iphone/ipad的情况下,委托(delegate)也可以是UIProgressView:
资料来源:http://allseeing-i.com/ASIHTTPRequest/How-to-use#tracking_progress
关于iphone - 如何使用ASIHTTPRequest跟踪上传/下载进度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4602812/