Created
September 13, 2022 10:45
-
-
Save IlijaMihajlovic/3fb4418ed6988a989543b1534eaea1a5 to your computer and use it in GitHub Desktop.
Set ViewController in SceneDelegate Programmatically
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guard let windowScene = (scene as? UIWindowScene) else { return } | |
window = UIWindow(windowScene: windowScene) | |
let navController = UINavigationController(rootViewController: FirstScreen()) | |
window?.rootViewController = navController | |
window?.makeKeyAndVisible() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment