A>.SVProgressHUD简单应用
1.导入
#import "SVProgressHUD.h"
2.在需要的地方进行添加
[SVProgressHUD showWithStatus:@"加载中..."](具体样式可以自行尝试)
3.在隐藏的时候,添加
[SVProgressHUD dismiss]
B>MBProgressHUD的简单应用
1.导入
#import "MBProgressHUD.h"
2.创建对象
@property (nonatomic,weak) MBProgressHUD *HUD;
3.在需要的地方添加
MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.navigationController.view];
_HUD = HUD;
[self.navigationController.view addSubview:_HUD];
_HUD.delegate = (id)self;
_HUD.labelText = @"加载中...";
[_HUD show:YES];
4.在隐藏的地方需要
_HUD.hidden = YES;
注意:
a.两者的菊花最好都在主线程中运行,否则可能报错
b.MBProgressHUD每次更新后函数调用可能会变化,以下载最新的并参阅:https://github.com/matej/MBProgressHUD.git
c.SVProgressHUD函数调用基本上变化不大,以下载最新的并参阅:https://github.com/TransitApp/SVProgressHUD.git