1234567891011121314151617181920212223242526272829 |
- //
- // ASDefualtAlertV.h
- // Asteria
- //
- // Created by iOS on 2023/6/17.
- //
- #import <UIKit/UIKit.h>
- 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
|