| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- //
- // AppDelegate.m
- // kneet2
- //
- // Created by Created by Jason Lee on 10/1/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "AppDelegate.h"
- #import "JDObject.h"
- @interface AppDelegate ()
- @end
- // Constants
- // static NSString * const kSomeLocalConstant = @"SomeValue";
- @implementation AppDelegate
- @synthesize window = _window;
- #pragma mark -
- #pragma mark Static methods
- #pragma mark -
- #pragma mark Init and dealloc
- #pragma mark -
- #pragma mark Properties
- #pragma mark -
- #pragma mark Public methods
- #pragma mark -
- #pragma mark Private methods
- #pragma mark -
- #pragma mark Delegate methods
- #pragma mark UIApplicationDelegate
- - (BOOL)application:(__unused UIApplication *)application didFinishLaunchingWithOptions:(__unused NSDictionary *)launchOptions {
-
-
- [self initializeApp];
-
- UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"IntroViewController" storyboardName:@"Main"];
-
-
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- self.window.rootViewController = vc;
-
- [self.window makeKeyAndVisible];
- return YES;
- }
- #pragma mark -
- #pragma mark Handlers
- - (void)initializeApp {
-
- // [DDLog addLogger:[DDASLLogger sharedInstance]];
- [DDLog addLogger:[DDTTYLogger sharedInstance]];
-
-
- }
- @end
|