From 7b7783f6d5558a4afdaf6b9ab3d0d63f6026bc1f Mon Sep 17 00:00:00 2001 From: MaraMincho <103064352+MaraMincho@users.noreply.github.com> Date: Sat, 18 Nov 2023 00:17:52 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20sceneDelegate=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- iOS/Projects/App/Sources/Application/SceneDelegate.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iOS/Projects/App/Sources/Application/SceneDelegate.swift b/iOS/Projects/App/Sources/Application/SceneDelegate.swift index 1b0fd5c8..105399f1 100644 --- a/iOS/Projects/App/Sources/Application/SceneDelegate.swift +++ b/iOS/Projects/App/Sources/Application/SceneDelegate.swift @@ -16,7 +16,9 @@ final class SceneDelegate: UIResponder, UIWindowSceneDelegate { guard let windowScene = scene as? UIWindowScene else { return } let navigationController = UINavigationController() window = UIWindow(windowScene: windowScene) - window?.rootViewController = ExerciseEnvironmentSetupViewController() + window?.rootViewController = navigationController + let coordinator = AppCoordinator(navigationController: navigationController) + coordinator.start() window?.makeKeyAndVisible() } }