AppDelegate.h 317 B

1234567891011121314151617181920
  1. //
  2. // AppDelegate.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/7.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  9. @property (nonatomic, strong) UIWindow *window;
  10. @property (nonatomic, assign) BOOL isShowAdView;
  11. //检查剪切板
  12. + (void)toJudgeThePastboard;
  13. @end