KCHAppDelegate.h 400 B

12345678910111213141516171819
  1. //
  2. // KCHAppDelegate.h
  3. // KacheDemo
  4. //
  5. // Created by jiajun on 7/25/12.
  6. // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class KCHMainViewController;
  10. @interface KCHAppDelegate : UIResponder <UIApplicationDelegate>
  11. @property (strong, nonatomic) UIWindow *window;
  12. @property (strong, nonatomic) KCHMainViewController *viewController;
  13. @end