UIView+Hint.h 929 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. //
  2. // UIView+Hint.h
  3. // HCQuanfangtong
  4. //
  5. // Created by qft_Ios_03 on 2018/4/24.
  6. // Copyright © 2018年 qft_Ios_03. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MBProgressHUD.h"
  10. @interface UIView (Hint)
  11. /**
  12. 显示信息
  13. @param msg 信息
  14. @param time 时间
  15. */
  16. - (void)xb_showHudOfMessage:(NSString *)msg withAfterTime:(float)time;
  17. /**
  18. 显示错误信息(图标)
  19. @param msg 信息
  20. @param time 时间
  21. */
  22. - (void)xb_showHudOfErrorIconMessage:(NSString *)msg withAfterTime:(float)time;
  23. /**
  24. 显示成功信息(图标)
  25. @param msg 信息
  26. @param time 时间
  27. */
  28. - (void)xb_showHudOfSucceedIconMessage:(NSString *)msg withAfterTime:(float)time;
  29. /**
  30. 显示菊花进度
  31. */
  32. - (void)xb_showProgress;
  33. /**
  34. 隐藏提示床
  35. */
  36. - (void)xb_dismiss;
  37. /**
  38. Sheet 信息
  39. @param msg 信息
  40. @param time 消失时间
  41. */
  42. - (void)xb_showSheetWithMessage:(NSString *)msg withAfterTime:(float)time;
  43. @end