// // ASDefualtAlertV.h // Asteria // // Created by iOS on 2023/6/17. // #import NS_ASSUME_NONNULL_BEGIN typedef enum : NSUInteger { ASAlertWidthStyleLittle, // w:180 defualt ASAlertWidthStyleMiddle, // w:230 ASAlertWidthStyleAlignScreen, // screenWidth - 60 } ASAlertWidthStyle; @interface ASDefualtAlertV : UIView @property (nonatomic, copy) btnClickBlock closeAction; - (void)setMsg:(NSString *)msg; - (void)setViewStyle:(ASAlertWidthStyle)style; @end NS_ASSUME_NONNULL_END