Main.storyboard 파일 제거 SceneDelegate.swift 파일 내부에 다음 내용을 추가 func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { var window: UIWindow? guard let windowScene = (scene as? UIWindowScene) else { return } window = UIWindow(windowScene: windowScene) let viewController = ViewController() window?.rootViewController = viewController w..