iOS NSURLCONNECTION下载进度条

本文介绍了一个使用Objective-C实现的iOS应用中文件下载功能的方法,包括如何显示下载进度、完成百分比以及预计下载大小等关键信息。通过NSURLConnection进行网络请求,并通过代理方法更新UI,实现了流畅的下载体验。

自定义类:

    NSMutableData *receivedData;

    long long zipSize;

    float percentComplete;

    long long expectedBytes;

    long long bytesReceived;


 percentLabel.text = @"0%";

    progress.progress = 0.0;

    bytesReceived = percentComplete = 0;

    receivedData = [[NSMutableData alloc]initWithLength:0];


- (IBAction)download:(id)sender {

    

    NSURL *url = [NSURL URLWithString:@"你要连接的地址"];

    NSURLRequest *request = [[NSURLRequest alloc]initWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60];

    NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self];

    [connection start];

}


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

{

    expectedBytes = [response expectedContentLength];

    numLabel.text =  [NSString stringWithFormat:@"0/%.02fMB",(float)expectedBytes/1048576];

    NSLog(@"%lld",expectedBytes);

}


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

{

    [receivedData appendData:data];

    NSInteger receivedLen = [data length];

    bytesReceived = (bytesReceived + receivedLen);

    numLabel.text = [NSString stringWithFormat:@"%.02f/%.02fMB",

                     (float)bytesReceived/1048576,(float)expectedBytes/1048576];

    percentLabel.text = [NSString stringWithFormat:@"%.0f%%",

                         (((float)bytesReceived/1048576)/((float)expectedBytes/1048576))*100];

    [progress setProgress:((bytesReceived/(float)expectedBytes)*100)/100];

    percentComplete = progress.progress*100;

}


-(void)connectionDidFinishLoading:(NSURLConnection *)connection

{

    [connection cancel];

    displayLabel.text = @"下载完成";

    //文件保存在Document

    NSString *filePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:@"下载的文件名"];

                          [receivedData writeToFile:filePath atomically:NO];

    NSLog(@"%@",filePath);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值