aboutsummaryrefslogtreecommitdiff
path: root/foray/SceneDelegate.swift
diff options
context:
space:
mode:
Diffstat (limited to 'foray/SceneDelegate.swift')
-rw-r--r--foray/SceneDelegate.swift14
1 files changed, 7 insertions, 7 deletions
diff --git a/foray/SceneDelegate.swift b/foray/SceneDelegate.swift
index 1aabcd2..ed11dfe 100644
--- a/foray/SceneDelegate.swift
+++ b/foray/SceneDelegate.swift
@@ -20,13 +20,13 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
guard let windowScene = (scene as? UIWindowScene) else { return }
let nav = UINavigationController()
-
- self.coordinator = ForayCoordinator(navigationController: nav)
- self.coordinator?.start()
-
- self.window = UIWindow(windowScene: windowScene)
- self.window?.rootViewController = nav
- self.window?.makeKeyAndVisible()
+
+ window = UIWindow(windowScene: windowScene)
+ window?.rootViewController = nav
+ window?.makeKeyAndVisible()
+
+ coordinator = ForayCoordinator(window: window, navigationController: nav)
+ coordinator?.start()
}
func sceneDidDisconnect(_ scene: UIScene) {