RDSHudShower.h 839 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RDSHudShower.h
  3. // RuiYuRealEstate
  4. //
  5. // Created by coderYK on 2018/9/5.
  6. // Copyright © 2018年 coderYK. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface RDSHudShower : NSObject
  10. // 信息提示框 HUD
  11. + (void)showCenterToast:(NSString *)msg;
  12. + (void)showBottomToast:(NSString *)msg;
  13. + (void)showBottomToastDebug:(NSString *)msg;
  14. + (void)setupHUD;
  15. + (void)showToast:(NSString *)msg;
  16. + (void)showWithStatus:(NSString *)status;
  17. + (void)showWithStatus:(NSString *)status autoDismiss:(BOOL)dismiss;
  18. + (void)showWithStatus:(NSString *)status dismissAffter:(NSTimeInterval)second;
  19. + (void)showWithStatusDismissAffter:(NSTimeInterval)second;
  20. + (void)dismissHUD;
  21. + (void)showSuccessWithStatus:(NSString *)status;
  22. + (void)showErrorWithStatus:(NSString *)status;
  23. + (void)showInfoWithStatus:(NSString*)status;
  24. @end