Notice
Recent Posts
Recent Comments
Link
관리 메뉴

김종권의 iOS 앱 개발 알아가기

[iOS - swift] iOS13버전 이상에서 SceneDelegate삭제하기 본문

iOS 응용 (swift)

[iOS - swift] iOS13버전 이상에서 SceneDelegate삭제하기

jake-kim 2020. 10. 17. 01:22

info.plist에서 해당 부분 삭제

AppDelegate.swift에서 함수 두 가지 삭제

SceneDelegate.swift삭제 후 AppDelegate 수정

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

        window = UIWindow(frame: UIScreen.main.bounds)
        window?.rootViewController = ViewController() // 특정 ViewController
        window?.makeKeyAndVisible()

        return true
    }

(정상 빌드 성공)

Comments