AppDelegate.h 217 B

123456789101112131415
  1. //
  2. // AppDelegate.h
  3. // TestApp
  4. //
  5. // Created by 邢铖 on 2023/6/1.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  9. @property (nonatomic, strong) UIWindow *window;
  10. @end