Created
February 27, 2021 14:52
-
-
Save kbw2204/ea60446e9f1ab4827dc48dded2fe1435 to your computer and use it in GitHub Desktop.
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
// appDelegate.swift or SceneDelegate.swift | |
guard let windowScene = (scene as? UIWindowScene) else { return } | |
self.window = UIWindow(frame: windowScene.coordinateSpace.bounds) | |
self.window?.windowScene = windowScene | |
let viewController = SearchRouter.createModule() | |
let navigationController = UINavigationController(rootViewController: viewController) | |
self.window?.rootViewController = navigationController | |
self.window?.makeKeyAndVisible() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment