总结一下:MBProgressHUD 是很好用的第三方控件,但也有不少地方像我们这种初学者不知道的地方,留以共勉。代码如下
+ (void)show:(NSString *)text icon:(NSString *)icon view:(UIView *)view
{
if (view == nil) view = [[UIApplication sharedApplication].windows lastObject];
// 快速显示一个提示信息
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
hud.detailsLabelText = text; 多行显示
hud.detailsLabelFont = [UIFont systemFontOfSize:16]; 多行显示时设置文字大小
//hud.labelText = text; 只能一行显示
//hud.labelFont = [UIFont systemFontOfSize:14];单行显示时设置文字大小
// 设置图片
if (icon && icon.length > 0) {
hud.customView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:[NSString stringWithFormat:@"MBProgressHUD.bundle/%@", icon]]];
}
// 只显示文本
hud.mode = MBProgressHUDModeText;
//hud.mode = MBProgressHUDModeCustomView; 再设置模式
// 隐藏时候从父控件中移除
hud.removeFromSuperViewOnHide = YES;
// 2秒之后再消失
[hud hide:YES afterDelay:2.0];
}