AppDelegate.h 401 B

123456789101112131415
  1. //
  2. // AppDelegate.h
  3. // Pandora
  4. //
  5. // Created by Mac Pro_C on 12-12-26.
  6. // Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. extern int _uniArgc;
  10. extern char** _uniArgv;
  11. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  12. @property (strong, nonatomic) UIWindow *window;
  13. @property (strong, nonatomic) UINavigationController *rootViewController;
  14. @end