Progress bar while downloading files iOS

2020-02-12 06:20发布

I am using the following to download the files from the internet:

NSData *myXMLData1 = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:@"Link]];

Now, I would like to put a progress bar while the download is going on. I checked various posts but i am not able to find out how to do it exactly.

Please help me!!

2条回答
做个烂人
2楼-- · 2020-02-12 06:51

I would recommend looking into the ASIHTTP library, which contains a lot of usefull classes on mobile handling and download handling.

Here is a link where they describe what ASIHTTP can offer in terms of download progress tracking : http://allseeing-i.com/ASIHTTPRequest/How-to-use#progress

查看更多
爷的心禁止访问
3楼-- · 2020-02-12 07:03

add

expectedBytes = [response expectedContentLength];

to

-(void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response

and add

float progress = ((_bytesReceived/(float)_expectedBytes)*100)/100;

to

-(void)connection:(NSURLConnection*)connection didReceiveData:(NSData*)data

then setProgress: on your UIProgressView

From: http://www.developers-life.com/progress-bar-download-file-on-iphone.html

查看更多
登录 后发表回答