AppDelegate.h 297 B

123456789101112131415161718
  1. #import <TargetConditionals.h>
  2. #if TARGET_OS_IPHONE
  3. #import <UIKit/UIKit.h>
  4. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  5. @property (strong, nonatomic) UIWindow *window;
  6. @end
  7. #else
  8. #import <Cocoa/Cocoa.h>
  9. @interface AppDelegate : NSObject <NSApplicationDelegate>
  10. @end
  11. #endif