Skip to content

Instantly share code, notes, and snippets.

@kbw2204
Created February 27, 2021 14:52
Show Gist options
  • Save kbw2204/ea60446e9f1ab4827dc48dded2fe1435 to your computer and use it in GitHub Desktop.
Save kbw2204/ea60446e9f1ab4827dc48dded2fe1435 to your computer and use it in GitHub Desktop.
// 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