// // UIView+Hint.h // HCQuanfangtong // // Created by qft_Ios_03 on 2018/4/24. // Copyright © 2018年 qft_Ios_03. All rights reserved. // #import #import "MBProgressHUD.h" @interface UIView (Hint) /** 显示信息 @param msg 信息 @param time 时间 */ - (void)xb_showHudOfMessage:(NSString *)msg withAfterTime:(float)time; /** 显示错误信息(图标) @param msg 信息 @param time 时间 */ - (void)xb_showHudOfErrorIconMessage:(NSString *)msg withAfterTime:(float)time; /** 显示成功信息(图标) @param msg 信息 @param time 时间 */ - (void)xb_showHudOfSucceedIconMessage:(NSString *)msg withAfterTime:(float)time; /** 显示菊花进度 */ - (void)xb_showProgress; /** 隐藏提示床 */ - (void)xb_dismiss; /** Sheet 信息 @param msg 信息 @param time 消失时间 */ - (void)xb_showSheetWithMessage:(NSString *)msg withAfterTime:(float)time; @end