MBProgressHUD的使用

// 初始化


  1. MBProgressHUD *loadingView = [[[MBProgressHUD alloc]initWithView:self.view]autorelease];  

  2. loadingView.labelText = @"正在加载...";  

  3. [self.view addSubview:loadingView];  

  4. [loadingView setMode:MBProgressHUDModeDeterminate];   //圆盘的扇形进度显示  

  5. loadingView.taskInProgress = YES;  

  6. [loadingView show:YES];   //显示  


   //下载过程中进度


  1. NSLog(@"size:%lld,total:%lld",size,total);  

  2. downloadedBytes += size;  

  3. CGFloat progressPercent = (CGFloat)downloadedBytes/total;  //计算进度  

  4. loadingView.progress = progressPercent;  


  //下载完成后,隐藏

  1. [loadingView hide:YES];  


你可能感兴趣的:(MBProgressHUD的使用)