NavApp3AppDelegate.h 455 B

1234567891011121314151617181920
  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) IBOutlet UINavigationController *navigationController;
  15. @end