12345678910111213141516171819202122232425262728293031 |
- //
- // ASCustomAlertViewController.h
- // Asteria
- //
- // Created by iOS on 2023/12/23.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASCustomAlertViewController : UIViewController
- @property (nonatomic,strong) UIView *contentV;
- @property (nonatomic, strong) UIButton *closeBt;
- @property (nonatomic, strong) UILabel *conetntLb;
- @property (nonatomic, strong) UILabel *titleLb;
- @property (nonatomic, strong) UIButton *sureBt;
- @property (nonatomic, strong) UIButton *cancelBt;
- @property (nonatomic, copy) void(^closeAction)(void);
- @property (nonatomic, copy) void(^sureAction)(void);
- @property (nonatomic, copy) void(^cancelAction)(void);
- - (void)setMastStatus:(BOOL)isMast;
- @end
- NS_ASSUME_NONNULL_END
|