15 lines
376 B
Objective-C
15 lines
376 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "LaunchView.h"
|
|
|
|
@class NavViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
{
|
|
@public
|
|
UIBackgroundTaskIdentifier m_kBackgroundTask;
|
|
}
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) LaunchView *launchView;
|
|
@property (strong, nonatomic) NavViewController* navigationController;
|
|
@end
|