Storyboard 파일로 앱을 생성하면 storyboard 파일이 자동으로 생성 된다
storyboard 파일을 삭제한다
navagator 에 제일 상단에 있는 프로젝트 클릭 -> Targets에 있는 프로젝트 클릭 -> info 탭 클릭 -> custom iOS Targets Properties -> Main storyboard file base name 을 클릭 후 커멘드 백스페이스를 눌러서 삭제
navagator 에 제일 상단에 있는 프로젝트 클릭 -> Targets에 있는 프로젝트 클릭 -> info 탭 클릭 -> custom iOS Targets Properties -> Application Scene Manifest -> Scene Configuration -> Application Session Role -> Item 0 -> Storyboard Name을 클릭후 커맨드 백스페이스를 눌러서 삭제
SceneDelegate.swift 파일 수정
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let windowScene = (scene as? UIWindowScene) else { return }
let vc = ViewController() // 처음 표시될 뷰컨 클래스를 불러준다
let window = UIWindow(windowScene: windowScene)
window.rootViewController = vc
window.makeKeyAndVisible()
self.window = window
}