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