SectionsAppDelegate.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:0k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  SectionsAppDelegate.h
  3. //  Sections
  4. //
  5. //  Created by Jeff LaMarche on 7/10/08.
  6. //  Copyright __MyCompanyName__ 2008. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SectionsViewController;
  10. @interface SectionsAppDelegate : NSObject <UIApplicationDelegate> {
  11. IBOutlet UIWindow *window;
  12. IBOutlet SectionsViewController *viewController;
  13. }
  14. @property (nonatomic, retain) UIWindow *window;
  15. @property (nonatomic, retain) SectionsViewController *viewController;
  16. @end