// // MBProgressHUD+MJ.m // // Created by mj on 13-4-18. // Copyright (c) 2013年 itcast. All rights reserved. // #import "MBProgressHUD+MJ.h" @implementation MBProgressHUD (MJ) #pragma mark 显示信息 + (void)show:(NSString *)text icon:(NSString *)icon view:(UIView *)view { // if (view == nil) view = [[UIApplication sharedApplication].windows lastObject]; if (view == nil) view = [UIApplication sharedApplication].keyWindow; // 快速显示一个提示信息 MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES]; hud.label.text = text; // 设置图片 hud.customView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:[NSString stringWithFormat:@"MBProgressHUD.bundle/%@", icon]]]; // 再设置模式 hud.mode = MBProgressHUDModeText; //hud.backgroundView.color = // 隐藏时候从父控件中移除 hud.removeFromSuperViewOnHide = YES; // 1秒之后再消失 [hud hideAnimated:YES afterDelay:1.0]; // [hud hide:YES afterDelay:1.0]; } #pragma mark 显示错误信息 + (void)showError:(NSString *)error toView:(UIView *)view{ [self show:error icon:@"error.png" view:view]; } + (void)showSuccess:(NSString *)success toView:(UIView *)view { [self show:success icon:@"success.png" view:view]; } #pragma mark 显示一些信息 + (MBProgressHUD *)showMessage:(NSString *)message toView:(UIView *)view { // if (view == nil) view = [[UIApplication sharedApplication].windows lastObject]; if (view == nil) view = [UIApplication sharedApplication].keyWindow; // 快速显示一个提示信息 MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES]; hud.label.text = message; hud.label.numberOfLines = 0; hud.bezelView.style = MBProgressHUDBackgroundStyleSolidColor; hud.mode = MBProgressHUDModeText; hud.contentColor = [UIColor whiteColor]; hud.bezelView.backgroundColor = COLOR(0, 0, 0, 0.8); hud.layer.cornerRadius = 27; hud.removeFromSuperViewOnHide = YES; [hud hideAnimated:YES afterDelay:2.0]; return hud; } + (void)showSuccess:(NSString *)success { [self showSuccess:success toView:nil]; } + (void)showError:(NSString *)error { [self showError:error toView:nil]; } + (MBProgressHUD *)showMessage:(NSString *)message { return [self showMessage:message toView:nil]; } + (void)hideHUDForView:(UIView *)view { [self hideHUDForView:view animated:YES]; } + (void)hideHUD { [self hideHUDForView:nil]; } @end