我正在使用单元格中的 ASIHTTP 库下载多个文件,并显示多个进度和状态,如接收的字节等 它工作正常,但是在很多用户指向该服务器之后,发生了一些事情,例如状态和进度条未显示,并且 ASIHTTPRequest 的响应块开始出现一些延迟。
提前致谢
您只需导入所有ASIHTTPRequest库,并且在使用进度条并使用下面的内置方法时需要使用协议文件导入...
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *url=@"http://dulemba.com/Visits/Cover-GGCC(2mb).jpg";
proTo = [[protocol_file alloc]initWithURL:[NSURL URLWithString:url] delegate:self];
imageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 10, 300, 250)];
[self.view addSubview:imageView];
lbl=[[UILabel alloc]initWithFrame:CGRectMake(0, 250, 200, 100)];
[self.view addSubview:lbl];
lblPers=[[UILabel alloc]initWithFrame:CGRectMake(100, 250, 200, 100)];
[self.view addSubview:lblPers];
progressBar = [[UIProgressView alloc] initWithFrame:CGRectMake(0, 280, 300, 90)];
[self.view addSubview:progressBar];
}
-(void)imgDownload:(UIImage *)data{
imageView.image=data;
NSLog(@"image");}
-(void)setLblvalue:(float)val{
lblPers.text=[[NSString alloc]initWithFormat:@"%0.2f %%",val];
}
-(void)setProgValu:(float)val{
progressBar.progress=val;
NSLog(@"progress %f",val);}
-(void)setPersent:(float)val{
lbl.text = [[NSString alloc] initWithFormat:@"%0.2f MB",val];
}