프로젝트에서 Storyboard 삭제하기

장수빈·2024년 6월 19일
0

UIKit

목록 보기
1/16

  1. Main 파일을 삭제해준다 -> Move to trash

Move to trash: 파일, 참조 삭제
Remove reference: 참조만 삭제


  1. info 부분에 Storyboard Name 부분을 삭제해준다. 못찾겠으면 cmd + f로 검색

  1. project file -> Build Settings -> UIKit Main Storyboard File Base Name 삭제

  1. SceneDelegate 파일 수정
    func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
        guard let windowScene = (scene as? UIWindowScene) else { return }
        let window = UIWindow(windowScene: windowScene)
        window.rootViewController = ViewController() // <- Root VC setting
        window.makeKeyAndVisible()
        self.window = window
    }

SceneDelagate 파일의 scene function을 수정해주자

끝!

profile
iOS 공부 이모저모 낙서장

0개의 댓글