Skip to content

Instantly share code, notes, and snippets.

@MickaelCruzDB
Created June 30, 2015 10:17
Show Gist options
  • Save MickaelCruzDB/174cf6cc706e304f0449 to your computer and use it in GitHub Desktop.
Save MickaelCruzDB/174cf6cc706e304f0449 to your computer and use it in GitHub Desktop.
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
var nav: UIViewController = NavViewController()
let navigationController = UINavigationController(rootViewController: nav)
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
self.window!.rootViewController = navigationController
self.window!.backgroundColor = UIColor.whiteColor()
self.window!.makeKeyAndVisible()
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment