SLAlertView.h 466 B

123456789101112131415161718192021
  1. //
  2. // SLAlertView.h
  3. // DarkMode
  4. //
  5. // Created by wsl on 2020/3/11.
  6. // Copyright © 2020 https://github.com/wsl2ls ----- . All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <MBProgressHUD.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SLAlertView : NSObject
  12. /// 展示几秒后自动隐藏
  13. /// @param text 文本
  14. /// @param delay 展示时长
  15. + (void)showAlertViewWithText:(NSString *)text delayHid:(NSTimeInterval)delay;
  16. @end
  17. NS_ASSUME_NONNULL_END