// 初始化ide
MBProgressHUD *loadingView = [[[MBProgressHUD alloc]initWithView:self.view]autorelease]; spa
loadingView.labelText = @"正在加載..."; orm
[self.view addSubview:loadingView]; it
[loadingView setMode:MBProgressHUDModeDeterminate]; //圓盤的扇形進度顯示 下載
loadingView.taskInProgress = YES; margin
[loadingView show:YES]; //顯示 di
//下載過程當中進度view
NSLog(@"size:%lld,total:%lld",size,total); loading
downloadedBytes += size; vi
CGFloat progressPercent = (CGFloat)downloadedBytes/total; //計算進度
loadingView.progress = progressPercent;
//下載完成後,隱藏
[loadingView hide:YES];