NavApp3AppDelegate.h 452 B

123456789101112131415161718192021
  1. //
  2. // NavApp3AppDelegate.h
  3. // NavApp3
  4. //
  5. // Created by David Cole on 6/23/11.
  6. // Copyright 2011 Kitware, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NavApp3AppDelegate : NSObject<UIApplicationDelegate> {
  10. UIWindow* window;
  11. UINavigationController* navigationController;
  12. }
  13. @property (nonatomic, retain) IBOutlet UIWindow* window;
  14. @property (nonatomic, retain)
  15. IBOutlet UINavigationController* navigationController;
  16. @end