//
//  XBLoadingView.h
//  Lighting
//
//  Created by 曹云霄 on 2016/12/1.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "MBProgressHUD.h"

@interface XBLoadingView : MBProgressHUD


/**
 显示普通加载框
 */
+ (void)showHUDViewWithDefault;

/**
 显示普通加载框
 */
+ (void)showHUDViewWithDefaultWithView:(UIView *)view;

/**
 显示文本提示框

 @param text 提示信息
 */
+ (void)showHUDViewWithText:(NSString *)text;

/**
 显示成功提示框

 @param text 提示信息
 */
+ (void)showHUDViewWithSuccessText:(NSString *)text completeBlock:(void(^)())finish;

/**
 显示进度框

 @param text 提示信息

 @return XBLoadingView
 */
+ (XBLoadingView *)showHUDViewProgressLabel:(NSString *)text;

/**
 隐藏加载框
 */
+ (void)hideHUDViewWithDefault;

/**
 隐藏加载框
 */
+ (void)hideHUDViewWithDefaultWithView:(UIView *)view;



@end