MBProgressHUD的使用

// 初始化ide


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

  2. loadingView.labelText = @"正在加載...";  orm

  3. [self.view addSubview:loadingView];  it

  4. [loadingView setMode:MBProgressHUDModeDeterminate];   //圓盤的扇形進度顯示  下載

  5. loadingView.taskInProgress = YES;  margin

  6. [loadingView show:YES];   //顯示  di


   //下載過程當中進度view


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

  2. downloadedBytes += size;  vi

  3. CGFloat progressPercent = (CGFloat)downloadedBytes/total;  //計算進度  

  4. loadingView.progress = progressPercent;  


  //下載完成後,隱藏

  1. [loadingView hide:YES];  

相關文章
相關標籤/搜索