AppDelegate.h 1015 B

12345678910111213141516171819202122232425262728
  1. //
  2. // AppDelegate.h
  3. // FreeMusic
  4. //
  5. //
  6. #import <UIKit/UIKit.h>
  7. @class FMMainViewController,FMHomeViewController,DownViewController,QingXuViewController;
  8. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  9. {
  10. NSInteger index;
  11. NSMutableArray * array;
  12. }
  13. @property (strong, nonatomic) UIWindow *window;
  14. @property (strong, nonatomic) FMMainViewController *mainViewController;
  15. @property (strong, nonatomic) UINavigationController * rootNavigationController;
  16. @property (strong, nonatomic) FMHomeViewController * homeViewController;
  17. @property (strong, nonatomic) UINavigationController * homeNavigationController;
  18. @property (strong, nonatomic) QingXuViewController * qingxuViewController;
  19. @property (strong, nonatomic) UINavigationController * qingxuNavigationController;
  20. @property (strong, nonatomic) DownViewController * tudouViewController;
  21. @property (strong, nonatomic) UINavigationController * tudouNavigationController;
  22. @property (strong, nonatomic) UITabBarController * tabBarController;
  23. @end