Skip to content

Instantly share code, notes, and snippets.

@llinardos
Created May 9, 2018 16:50
Show Gist options
  • Save llinardos/83560767e213383e2dbf101ef820d568 to your computer and use it in GitHub Desktop.
Save llinardos/83560767e213383e2dbf101ef820d568 to your computer and use it in GitHub Desktop.
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
let vc = StarsViewTestVC()
window!.rootViewController = vc
return true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment