ASCustomWindow.h 429 B

12345678910111213141516171819202122
  1. //
  2. // ASCustomWindow.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/12/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASCustomAlertViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASCustomWindow : UIWindow
  11. @property (nonatomic,strong) ASCustomAlertViewController *vc;
  12. + (ASCustomWindow *)show:(NSString *)version isMast:(BOOL)isMast upBlock:(void(^)(void))success cancelBlock:(void(^)(void))cancel;
  13. @end
  14. NS_ASSUME_NONNULL_END