Skip to content

Instantly share code, notes, and snippets.

@SwapnilDhotre
Last active November 24, 2019 09:48
Show Gist options
  • Save SwapnilDhotre/f443b00d9c676c1354368f07c66b42f0 to your computer and use it in GitHub Desktop.
Save SwapnilDhotre/f443b00d9c676c1354368f07c66b42f0 to your computer and use it in GitHub Desktop.
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let windowScene = (scene as? UIWindowScene) else { return }
window = UIWindow(frame: windowScene.coordinateSpace.bounds)
window?.windowScene = windowScene
window?.rootViewController = FirstViewController()
window?.makeKeyAndVisible()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment