Skip to content

Instantly share code, notes, and snippets.

@atulkhatri
Last active July 12, 2021 16:55
Show Gist options
  • Save atulkhatri/50f58f3483a468c7bf498c6518e69503 to your computer and use it in GitHub Desktop.
Save atulkhatri/50f58f3483a468c7bf498c6518e69503 to your computer and use it in GitHub Desktop.
tvOS Bootcamp AppDelegate
window = UIWindow(frame: UIScreen.main.bounds)
let controller = HomeViewController(nibName: "HomeViewController", bundle: nil)
window?.rootViewController = controller
window?.makeKeyAndVisible()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment