MBProgressHUD和SVProgressHUD的区别:
svprogresshud 使用起来很方便,但 可定制 差一些,看它的接口貌似只能添加一个全屏的HUD,不能把它添加到某个视图上面去.
mbprogresshud 功能全一些,可定制 高一些,而且可以指定加到某一个View上去.用起来可能就没上面那个方便了.
具体还要看你的使用场景.
先附上 github 的下载地址:
https://github.com/jdg/MBProgressHUD
https://github.com/TransitApp/SVProgressHUD
1.MBProgressHUD
作者 Matej Bukovinski 是一位全栈工程师, UI/UX 设计师, 此项目是一款提示框第三方库, 帮助开发者快速应用到项目中。
先导入MBProgressHUD.h .m导入工程,声明MBProgressHUDDelegate
{
MBProgressHUD *HUD;
}
//initWithView
HUD= [[MBProgressHUDalloc]initWithView:self.navigationController.view];
HUD.delegate = self;
[self.navigationController.view addSubview:HUD];
//小菊花
HUD.delegate=self;
[HUD showWhileExecuting:@selector(XXXX) onTarget:self withObject:nil animated:YES];
//Determinate Mode - 决定模式
HUD.mode=MBProgressHUDModeAnnularDeterminate;
HUD.delegate=self;
HUD.labelText=@"Loading";
[HUD showWhileExecuting:@selector(myProgressTask)onTarget:self withObject:nil animated:YES];
//Dim Background - 模糊背景
HUD.dimBackground=YES;
只是简单的写几种常用,具体用找带的 Demo 就好,用完时候实现一下
- (void)hudWasHidden:(MBProgressHUD*)hud {
[HUD removeFromSuperview];
HUD=nil;
}
就 ok 了。
2.SVProgressHUD
又一款轻量级的 iOS 第三方控件, 用于显示任务加载时的动画, 非常轻便, 容易使用.
这个更加轻量级了,拖入工程就好
//感叹号
[SVProgressHUD showInfoWithStatus:@"xxxxx."];
//success
[SVProgressHUD showSuccessWithStatus:@"Success!"];
//error
[SVProgressHUD showErrorWithStatus:@"Error"];
个人一般就用这三个,配合大量数据请求的话还是用 MB,个人看法。