Created
December 11, 2016 09:17
-
-
Save alfian0/05232aa018e1d96dae299e824543e64a to your computer and use it in GitHub Desktop.
AppDelegate for Storyboard less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
// Override point for customization after application launch. | |
let window = UIWindow(frame: UIScreen.mainScreen().bounds) | |
window.backgroundColor = UIColor.whiteColor() | |
window.makeKeyAndVisible() | |
self.window = window | |
let vc = UIViewController() | |
let nc = UINavigationController(rootViewController:vc) | |
window.rootViewController = nc | |
return true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment