ShowtipTool.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // ShowtipTool.h
  3. // IntercontinentalHealth
  4. //
  5. // Created by zsj on 2018/5/30.
  6. // Copyright © 2018年 ITpower. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ShowtipTool : NSObject
  10. /**
  11. 加载中
  12. @param status <#status description#>
  13. */
  14. +(void)showLoadingWithStatus:(NSString *)status;
  15. /**
  16. 提示info信息
  17. @param status <#status description#>
  18. */
  19. +(void)showInfoWithStatus:(NSString*)status;
  20. /**
  21. 成功提示
  22. @param status <#status description#>
  23. */
  24. +(void)showSuccessWithStatus:(NSString*)status;
  25. /**
  26. 失败提示
  27. @param status <#status description#>
  28. */
  29. +(void)showErrorWithStatus:(NSString*)status;
  30. /**
  31. 直接显示消息
  32. 不带图片显示
  33. @param status <#status description#>
  34. */
  35. +(void)showMessageWithStatus:(NSString *)status;
  36. /**
  37. 一直显示消息不消失
  38. @param status <#status description#>
  39. */
  40. +(void)showMessageLongWithStatus:(NSString *)status;
  41. //+(void)showWithStatus:(NSString *)status;
  42. +(void)hide;
  43. +(void)showProgress:(CGFloat )progress Status:(NSString *)status;
  44. @end