UniversalAppAppDelegate.h 436 B

123456789101112131415161718192021
  1. //
  2. // UniversalAppAppDelegate.h
  3. // UniversalApp
  4. //
  5. // CocoaLumberjack Demos
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class UniversalAppViewController;
  9. @interface UniversalAppAppDelegate : NSObject <UIApplicationDelegate> {
  10. UIWindow *window;
  11. UniversalAppViewController *viewController;
  12. }
  13. @property (nonatomic, strong) IBOutlet UIWindow *window;
  14. @property (nonatomic, strong) IBOutlet UniversalAppViewController *viewController;
  15. @end