提示图显示篇之MBProgressHUD(五)

版本记录

版本号 时间
V1.0 2017.05.28

前言

在我们的app项目中,为了增加和用户很好的交互能力,通常都需要加一些提示图,比如说,当我们需要网络加载数据的时候,首先要监测网络,如果网络断开的时候,我们需要提示用户;还有一个场景就是登陆的时候,需要提示用户正在登录中和登录成功;再比如清除用户的缓存数据成功的时候,也需要进行清除成功的提示的,等等。总之,用的场景很多,好的提示图可以增强和用户的交互体验,试想,如果没有网络,也不提示用户,用户还以为还在登录,过了一会还是上不去,那可能用户就疯掉了,怒删app了。最近做的几个项目中也是对这个要求的也很多,在实际应用中可以自己写,也可以使用第三方框架,比较知名的比如MBProgressHUDSVProgressHUD,从这一篇开始我就一点一点的介绍它们以及它们的使用方法,希望对大家有所帮助,那我们就开始喽。先给出github地址:
MBProgressHUD github
感兴趣可以先看上一篇
1.提示图显示篇之MBProgressHUD(一)
2.提示图显示篇之MBProgressHUD(二)
3.提示图显示篇之MBProgressHUD(三)
4.提示图显示篇之MBProgressHUD(四)

这一篇将对MBProgreeHUD的详细使用举例进行介绍。

详情

下面从几个demo入手,说明MBProgressHUD
的用法。

一、系统自带菊花

下面这个demo,是系统自带的菊花,并设置其背景色为黑色。这里设置背景色,需要知道MBProgressHUD的一个枚举。

typedef NS_ENUM(NSInteger, MBProgressHUDBackgroundStyle) {
    /// Solid color background 其他颜色
    MBProgressHUDBackgroundStyleSolidColor,
    /// UIVisualEffectView or UIToolbar.layer background view 默认的,半透明
    MBProgressHUDBackgroundStyleBlur
};

这里系统默认的是MBProgressHUDBackgroundStyleBlur半透明的,一般这么设置背景色。

HUD.bezelView.backgroundColor = [UIColor blackColor];

下面我们再看一下bezelView

/**
 * The view containing the labels and indicator (or customView).
 */
@property (strong, nonatomic, readonly) MBBackgroundView *bezelView;

@interface MBBackgroundView : UIView

/**
 * The background style. 
 * Defaults to MBProgressHUDBackgroundStyleBlur on iOS 7 or later and MBProgressHUDBackgroundStyleSolidColor otherwise.
 * @note Due to iOS 7 not supporting UIVisualEffectView, the blur effect differs slightly between iOS 7 and later versions.
 */
@property (nonatomic) MBProgressHUDBackgroundStyle style;

/**
 * The background color or the blur tint color.
 * @note Due to iOS 7 not supporting UIVisualEffectView, the blur effect differs slightly between iOS 7 and later versions.
 */
@property (nonatomic, strong) UIColor *color;

@end

下面我们就看代码,具体实现

- (void)HUDDisplayModel1
{
    MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    //如果设置此属性则当前的view置于后台
    HUD.dimBackground = YES;
    HUD.mode = MBProgressHUDModeIndeterminate;
    // 显示隐藏时的动画模式--放大
    HUD.animationType = MBProgressHUDAnimationZoomIn;
    HUD.label.text = @"请稍等";
    //设置背景色为黑色
    HUD.bezelView.backgroundColor = [UIColor blackColor];
    HUD.label.textColor = [UIColor whiteColor];
    //显示对话框
    [HUD showAnimated:YES whileExecutingBlock:^{
        //对话框显示时需要执行的操作
        sleep(20);
    } completionBlock:^{
        //操作执行完后取消对话框
        [HUD removeFromSuperview];
    }];
}

具体效果看下边的gif图。

系统自带的菊花

二、环状图

下面这个是环状图,用来显示任务的进度视图。废话不多了,先看代码 。

//环状图
- (void)HUDDisplayModel2
{
    MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    self.HUD = HUD;
    HUD.delegate = self;
    //如果设置此属性则当前的view置于后台
//    HUD.dimBackground = YES;
    HUD.mode = MBProgressHUDModeAnnularDeterminate;
    // 显示隐藏时的动画模式--放大
    HUD.animationType = MBProgressHUDAnimationZoomIn;
    HUD.label.text = @"正在加载";
    //设置背景色为黑色
    HUD.bezelView.backgroundColor = [UIColor blackColor];
    HUD.label.textColor = [UIColor whiteColor];
    //设置进度条的的边线和进度的颜色
    HUD.contentColor = [UIColor whiteColor];
    [HUD showAnimated:YES whileExecutingBlock:^{
        //对话框显示时需要执行的操作
        float progress = 0.0;
        while (progress < 1.0) {
            progress += 0.01;
            NSLog(@"%lf--HUD.progress",HUD.progress);
            dispatch_async(dispatch_get_main_queue(), ^{
                HUD.progress = progress;
            });
            //将线程挂起一段时间,单位是us
            usleep(50000);
        }
    } completionBlock:^{
        //操作执行完后取消对话框
        [HUD removeFromSuperview];
    }];
}

下面看一下gif图。

环状指示图

三、条形图

下面这个是条形图,用来显示任务的进度视图。废话不多了,先看代码 。

//条状图
- (void)HUDDisplayModel3
{
    MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    self.HUD = HUD;
    HUD.delegate = self;
    //如果设置此属性则当前的view置于后台
    //    HUD.dimBackground = YES;
    HUD.mode = MBProgressHUDModeDeterminateHorizontalBar;
    // 显示隐藏时的动画模式--放大
    HUD.animationType = MBProgressHUDAnimationZoomIn;
    HUD.label.text = @"正在加载";
    //设置背景色为黑色
    HUD.bezelView.backgroundColor = [UIColor blackColor];
    HUD.label.textColor = [UIColor whiteColor];
    //设置进度条的的边线和进度的颜色
    HUD.contentColor = [UIColor whiteColor];
    [HUD showAnimated:YES whileExecutingBlock:^{
        //对话框显示时需要执行的操作
        float progress = 0.0;
        while (progress < 1.0) {
            progress += 0.01;
            NSLog(@"%lf--HUD.progress",HUD.progress);
            dispatch_async(dispatch_get_main_queue(), ^{
                HUD.progress = progress;
            });
            //将线程挂起一段时间,单位是us
            usleep(50000);
        }
    } completionBlock:^{
        //操作执行完后取消对话框
        [HUD removeFromSuperview];
    }];
}

下面看gif图。

条状图

四、自定义视图

下面这个是自定义图,用来显示任务的进度视图。废话不多了,先看代码 。

//自定义视图
- (void)customDisplayModel4
{
    MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    self.HUD = HUD;
    HUD.delegate = self;
    //如果设置此属性则当前的view置于后台
    //    HUD.dimBackground = YES;
    HUD.mode = MBProgressHUDModeCustomView;
    // 显示隐藏时的动画模式--放大
    HUD.animationType = MBProgressHUDAnimationZoomIn;
    HUD.label.text = @"加载成功";
    //设置背景色为黑色
    HUD.bezelView.backgroundColor = [UIColor blackColor];
    HUD.label.textColor = [UIColor whiteColor];
    UIImageView *imageView = [[UIImageView alloc] init];
    imageView.image = [UIImage imageNamed:@"success"];
    HUD.customView = imageView;
    //设置进度条的的边线和进度的颜色
    HUD.contentColor = [UIColor whiteColor];
    [HUD showAnimated:YES whileExecutingBlock:^{
        //对话框显示时需要执行的操作
        sleep(20);
    } completionBlock:^{
        //操作执行完后取消对话框
        [HUD removeFromSuperview];
    }];
}

下面看自定义视图。

自定义视图

五、只显示文本视图

下面这个是只显示文本视图,用来显示任务的进度视图。废话不多了,先看代码 。

//只显示文本
- (void)HUDDisplayModel6
{
    MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    self.HUD = HUD;
    HUD.delegate = self;
    //如果设置此属性则当前的view置于后台
    //    HUD.dimBackground = YES;
    HUD.mode = MBProgressHUDModeText;
    // 显示隐藏时的动画模式--放大
    HUD.animationType = MBProgressHUDAnimationZoomIn;
    HUD.label.text = @"加载成功";
    //设置背景色为黑色
    HUD.bezelView.backgroundColor = [UIColor blackColor];
    HUD.label.textColor = [UIColor whiteColor];
    UIImageView *imageView = [[UIImageView alloc] init];
    imageView.image = [UIImage imageNamed:@"success"];
    HUD.customView = imageView;
    //设置进度条的的边线和进度的颜色
    HUD.contentColor = [UIColor whiteColor];
    [HUD showAnimated:YES whileExecutingBlock:^{
        //对话框显示时需要执行的操作
        sleep(20);
    } completionBlock:^{
        //操作执行完后取消对话框
        [HUD removeFromSuperview];
    }];
}

看下图。

只显示文本

六、饼状视图

下面这个是只显示饼状视图,用来显示任务的进度视图。废话不多了,先看代码 。

//饼状图
- (void)HUDDisplayModel5
{
    MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    self.HUD = HUD;
    HUD.delegate = self;
    //如果设置此属性则当前的view置于后台
    //    HUD.dimBackground = YES;
    HUD.mode = MBProgressHUDModeDeterminate;
    // 显示隐藏时的动画模式--放大
    HUD.animationType = MBProgressHUDAnimationZoomIn;
    HUD.label.text = @"正在加载";
    //设置背景色为黑色
    HUD.bezelView.backgroundColor = [UIColor blackColor];
    HUD.label.textColor = [UIColor whiteColor];
    //设置进度条的的边线和进度的颜色
    HUD.contentColor = [UIColor whiteColor];
    [HUD showAnimated:YES whileExecutingBlock:^{
        //对话框显示时需要执行的操作
        float progress = 0.0;
        while (progress < 1.0) {
            progress += 0.01;
            NSLog(@"%lf--HUD.progress",HUD.progress);
            dispatch_async(dispatch_get_main_queue(), ^{
                HUD.progress = progress;
            });
            //将线程挂起一段时间,单位是us
            usleep(50000);
        }
    } completionBlock:^{
        //操作执行完后取消对话框
        [HUD removeFromSuperview];
    }];
}

看下面的gif图

饼状图

  这里我有个疑问,不知道为什么我这里一直是个环形,不是个扇形填充,只是描边不填充,有知道的希望可以和我说一下,谢谢。

后记

  端午节就这么过去了,这个提示图我也写的差不多了,希望大家能指出其中的错误和不足,谢谢大家。

端午安康
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,240评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,328评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,182评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,121评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,135评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,093评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,013评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,854评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,295评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,513评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,398评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,989评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,636评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,657评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容