TheAlertCtrl.h 702 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // TheAlertCtrl.h
  3. // FornoWorld
  4. //
  5. // Created by RD on 2021/12/10.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface TheAlertCtrl : NSObject
  9. // 弹窗提示信息
  10. + (instancetype)rds_alertWithTitle:(NSString *)title message:(NSString *)message;
  11. + (instancetype)rds_alertWithTitle:(NSString *)title message:(NSString *)message cancel:(NSString *)calcel sure:(NSString *)sure cancelColor:(UIColor *)cancelColor sureColor:(UIColor *)sureColor
  12. cancelAction:(void(^)(void))cancelActionBlock sureAction:(void(^)(void))sureActionBlock;
  13. /// 定时弹窗
  14. + (instancetype)rds_timerAlertSureAction:(void(^)(void))sureActionBlock;
  15. - (void)rds_show;
  16. - (void)rds_dismiss;
  17. @end