ios-ASIHTTPRequest下载与进度条以及用观察者模式来监听进度条属性

UIProgressView *uiprogressview= [[UIProgressView alloc]initWithProgressViewStyle:UIProgressViewStyleBar];//建立一个进度条
    uiprogressview.frame=CGRectMake(50, 100, 200, 20);
    uiprogressview.tag=10;
    [self.window addSubview:uiprogressview];
    //通过观察者模式来检测这个属性
    [uiprogressview addObserver:self forKeyPath:@"progress" options:NSKeyValueObservingOptionNew context:nil];
    NSString * fileurlstring=@"http://free2.macx.cn:81/tools/system/CleanMyMac-v1-10-8.dmg";
    NSString *downloadpath=[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
    NSString *filename=[fileurlstring lastPathComponent];
    NSString *downloadpath_now=  [downloadpath stringByAppendingPathComponent:filename];
    ASIHTTPRequest*request= [[ASIHTTPRequest alloc]initWithURL:[NSURL URLWithString:fileurlstring]];
    [request setDownloadDestinationPath:downloadpath_now];//设置存储路径
    [request setDownloadProgressDelegate:[self.window viewWithTag:10]];//绑定一个进度条
    [request setHeadersReceivedBlock:^(NSDictionary *responseHeaders) {
        NSLog(@"%@",responseHeaders);//里面包含了数据大小的那些内容
    }];//当服务器做出响应后调用的block,返回的一个响应头,同理有请求头
    [request startAsynchronous];//启动异步下载


-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{

    NSLog(@"%@",keyPath);
  NSNumber *nuber=  [change objectForKey:@"new"];
  float ff=  [nuber floatValue];
    NSLog(@"%.1f%%",ff*100);
    
}

 

 

 

ios-ASIHTTPRequest下载与进度条以及用观察者模式来监听进度条属性,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。