Skip to content

Instantly share code, notes, and snippets.

@TerryCK
Last active July 4, 2017 05:41
Show Gist options
  • Save TerryCK/8d7b09f49ce21bfc041d2c28b31a111a to your computer and use it in GitHub Desktop.
Save TerryCK/8d7b09f49ce21bfc041d2c28b31a111a to your computer and use it in GitHub Desktop.
AppDelegate
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.makeKeyAndVisible()
window?.rootViewController = UINavigationController(rootViewController: ViewController())
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment