Skip to content

Commit

Permalink
[#142] 파일 원상태로 돌리기
Browse files Browse the repository at this point in the history
  • Loading branch information
meenyweeny committed Aug 16, 2022
1 parent 93c8e0e commit 06c91d0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Deartoday/Deartoday/Resource/Support/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {


func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
// guard let scene = (scene as? UIWindowScene) else { return }
// self.window = UIWindow(windowScene: scene)
// self.window?.rootViewController = SplashViewController()
// self.window?.makeKeyAndVisible()

guard let _ = (scene as? UIWindowScene) else { return }
guard let scene = (scene as? UIWindowScene) else { return }
self.window = UIWindow(windowScene: scene)
self.window?.rootViewController = SplashViewController()
self.window?.makeKeyAndVisible()
// guard let _ = (scene as? UIWindowScene) else { return }
}

func sceneDidDisconnect(_ scene: UIScene) {
Expand Down

0 comments on commit 06c91d0

Please sign in to comment.