123456789101112131415161718192021222324252627282930 |
- //
- // ASHomeAlertWindow.h
- // Asteria
- //
- // Created by iOS on 2023/6/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef enum : NSUInteger {
- ASAlertPositionTop,
- ASAlertPositionCenter,
- ASAlertPositionBottom,
- } ASAlertPosition;
- @interface ASHomeAlertWindow : UIWindow
- + (void)clearWindow;
- + (void)showCustomVc:(UIView *)v position:(ASAlertPosition)postion;
- + (void)alertMsg:(NSString *)message;
- @end
- NS_ASSUME_NONNULL_END
|