MBProgressHUD 的用法

来源:互联网 发布:网络教育专升本学历 编辑:程序博客网 时间:2024/06/05 17:52

    在项目中,经常需要显示图片或者其他内容的下载进度,MBProgressHUD是一个优秀开源的进度显示控件, 方便简单,下面介绍它的使用方法


    // 初始化

                MBProgressHUD *loadingView = [[[MBProgressHUD alloc]initWithView:self.view]autorelease];        loadingView.labelText = @"正在加载...";        [self.view addSubview:loadingView];        [loadingView setMode:MBProgressHUDModeDeterminate];   //圆盘的扇形进度显示        loadingView.taskInProgress = YES;        [loadingView show:YES];   //显示

   //下载过程中进度

            NSLog(@"size:%lld,total:%lld",size,total);            downloadedBytes += size;            CGFloat progressPercent = (CGFloat)downloadedBytes/total;  //计算进度            loadingView.progress = progressPercent;

  //下载完成后,隐藏

         [loadingView hide:YES];


原创粉丝点击