SMSSDKUIProcessHUD.h 486 B

12345678910111213141516171819202122232425
  1. //
  2. // BBSUIProcessHUD.h
  3. // BBSSDKUI
  4. //
  5. // Created by youzu_Max on 2017/4/25.
  6. // Copyright © 2017年 MOB. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SMSSDKUIProcessHUD : NSObject
  10. + (void) showSuccessInfo:(NSString *)info;
  11. + (void) showFailInfo:(NSString *)info;
  12. + (void) showProcessHUDWithInfo:(NSString *)info;
  13. + (void) dismiss;
  14. + (void) dismissWithResult:(void (^)())result;
  15. + (void) dismissWithDelay:(NSTimeInterval)second result:(void(^)())result;
  16. @end