Skip to content

Instantly share code, notes, and snippets.

@joelmarquez90
Last active December 27, 2017 21:51
Show Gist options
  • Save joelmarquez90/d9005bd2aa0511b5e4d2998bbfeec1ee to your computer and use it in GitHub Desktop.
Save joelmarquez90/d9005bd2aa0511b5e4d2998bbfeec1ee to your computer and use it in GitHub Desktop.
Rewriting an app in Swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = ViewController()
window?.makeKeyAndVisible()
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment