第三方库MBProgressHUD(菊花,加载中,操作成功)

本人ios初学者,为自己学习方便,复制各位大神的学习性文章放在自己简书里,仅作为自己学习方便使用,如果作者疑此行为侵权,请随时联系本人删除,如有共同学习者复制此文章,请注明原出处

MBProgressHUD是一个开源项目,实现了很多种样式的提示框,使用上简单、方便,并且可以对显示的内容进行自定义,功能很强大,很多项目中都有使用到。到GitHub上可以下载到项目源码https://github.com/jdg/MBProgressHUD,下载下来后直接把MBProgressHUD.h和MBProgressHUD.m拖入工程中就行,别忘了选择拷贝到工程。完了在需要使用的地方导入头文件就可以开始使用了。首先看下工程截图:

接下来是整个Demo的完整界面,这里我只选择出了几个常用的对话框,其他样式的在源码提供的Demo里可以找到,要用的话直接参考就可以。

接下来直接上代码了,头文件部分:

#import  <UIKit/UIKit.h>

#import "MBProgressHUD.h"

@interface ViewController : UIViewController

{

//HUD(Head-Up Display,意思是抬头显示的意思)

MBProgressHUD *HUD;

}

- (IBAction)showTextDialog:(id)sender;

- (IBAction)showProgressDialog:(id)sender;

- (IBAction)showProgressDialog2:(id)sender;

- (IBAction)showCustomDialog:(id)sender;

- (IBAction)showAllTextDialog:(id)sender;

@end

实现文件(按钮实现部分):

- (IBAction)showTextDialog:(id)sender {

//初始化进度框,置于当前的View当中

HUD = [[MBProgressHUD alloc] initWithView:self.view];

[self.view addSubview:HUD];

//如果设置此属性则当前的view置于后台

HUD.dimBackground = YES;

//设置对话框文字

HUD.labelText = @"请稍等";

//显示对话框

[HUD showAnimated:YES whileExecutingBlock:^{

//对话框显示时需要执行的操作

sleep(3);

} completionBlock:^{

//操作执行完后取消对话框

[HUD removeFromSuperview];

[HUD release];

HUD = nil;

}];

}

- (IBAction)showProgressDialog:(id)sender {

HUD = [[MBProgressHUD alloc] initWithView:self.view];

[self.view addSubview:HUD];

HUD.labelText = @"正在加载";

//设置模式为进度框形的

HUD.mode = MBProgressHUDModeDeterminate;

[HUD showAnimated:YES whileExecutingBlock:^{

floatprogress = 0.0f;

while(progress < 1.0f) {

progress += 0.01f;

HUD.progress = progress;

usleep(50000);

}

} completionBlock:^{

[HUD removeFromSuperview];

[HUD release];

HUD = nil;

}];

}

- (IBAction)showProgressDialog2:(id)sender {

HUD = [[MBProgressHUD alloc] initWithView:self.view];

[self.view addSubview:HUD];

HUD.labelText = @"正在加载";

HUD.mode = MBProgressHUDModeAnnularDeterminate;

[HUD showAnimated:YES whileExecutingBlock:^{

floatprogress = 0.0f;

while(progress < 1.0f) {

progress += 0.01f;

HUD.progress = progress;

usleep(50000);

}

} completionBlock:^{

[HUD removeFromSuperview];

[HUD release];

HUD = nil;

}];

}

- (IBAction)showCustomDialog:(id)sender {

HUD = [[MBProgressHUD alloc] initWithView:self.view];

[self.view addSubview:HUD];

HUD.labelText = @"操作成功";

HUD.mode = MBProgressHUDModeCustomView;

HUD.customView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Checkmark"]] autorelease];

[HUD showAnimated:YES whileExecutingBlock:^{

sleep(2);

} completionBlock:^{

[HUD removeFromSuperview];

[HUD release];

HUD = nil;

}];

}

- (IBAction)showAllTextDialog:(id)sender {

HUD = [[MBProgressHUD alloc] initWithView:self.view];

[self.view addSubview:HUD];

HUD.labelText = @"操作成功";

HUD.mode = MBProgressHUDModeText;

//指定距离中心点的X轴和Y轴的偏移量,如果不指定则在屏幕中间显示

//    HUD.yOffset = 150.0f;

//    HUD.xOffset = 100.0f;

[HUD showAnimated:YES whileExecutingBlock:^{

sleep(2);

} completionBlock:^{

[HUD removeFromSuperview];

[HUD release];

HUD = nil;

}];

}

依次实现的效果如下:

下面这个效果就类似Android中的Toast:

以上就简单介绍了MBProgressHUD的使用,这里都是采用block的形式来操作的,这样写起代码来更直观也更高效。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • MBProgressHUD是一个开源项目,实现了很多种样式的提示框,使用上简单、方便,并且可以对显示的内容进行自定...
    小专注阅读 2,700评论 4 1
  • 源码来源:gitHub源码 转载于: CocoaChina 来源:南峰子的技术博客 版本:0.9.1 MBPr...
    李小六_阅读 6,477评论 2 5
  • - (void)testMBProgressHUD { NSLog(@"test MBProgressHUD ")...
    有偶像包袱的程序狗阅读 1,607评论 0 1
  • 想想自己从小到大因为爱出风头,爱抢头条。作出了好多的灾难。 有个大神说过,衣服最好是防御性的,对寒酸的不屑,对...
    骆驼和马阅读 250评论 0 1
  • 说好了,2016年最后一天早上8时,我们在百家惠超市前一起出发,一起去领略那年代久远、让人无比向往的黔桂古道,一起...
    兰桂腾芳阅读 1,202评论 12 3