ASCustomAlertViewController.h 722 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ASCustomAlertViewController.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/12/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ASCustomAlertViewController : UIViewController
  10. @property (nonatomic,strong) UIView *contentV;
  11. @property (nonatomic, strong) UIButton *closeBt;
  12. @property (nonatomic, strong) UILabel *conetntLb;
  13. @property (nonatomic, strong) UILabel *titleLb;
  14. @property (nonatomic, strong) UIButton *sureBt;
  15. @property (nonatomic, strong) UIButton *cancelBt;
  16. @property (nonatomic, copy) void(^closeAction)(void);
  17. @property (nonatomic, copy) void(^sureAction)(void);
  18. @property (nonatomic, copy) void(^cancelAction)(void);
  19. - (void)setMastStatus:(BOOL)isMast;
  20. @end
  21. NS_ASSUME_NONNULL_END