Xcode: 스토리보드 없이 코딩하기
-
main.storyboard 제거
-
Target - General - Deployment Info - Main Interface에서 "Main" 지워주기
-
Info.plist - 'Storyboard Name' 제거
-
SceneDelegate(iOS13~): rootViewController지정
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let windowScene = (scene as? UIWindowScene) else { return }
window = UIWindow(windowScene: windowScene)
window?.windowScene = windowScene
window?.rootViewController = HomeViewController()
window?.makeKeyAndVisible()
Author And Source
이 문제에 관하여(Xcode: 스토리보드 없이 코딩하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yoogail/Xcode-스토리보드-없이-코딩하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)