[Setting]without Storyboard

1998 단어 XcodeXcode
  1. Stroyboard 파일 삭제

  2. 설정 -> General -> Main Interface 공백으로 만들기

  3. inpo.plist 설정

  1. Is Initial View Controller 설정을 위해 SceneDelegate 설정
  • SceneDelegate에 scene 함수가 있을텐데 guard let _ 와일드카드로 선언된 변수를 변수명을 표기하고 다음과 같이 설정
guard let scene = (scene as? UIWindowScene) else { 
return }
// 
window = UIWindow(windowScene: scene)
let navigation = UINavigationController(rootViewController: ViewController())
window?.rootViewController = navigation
window?.makeKeyAndVisible()

좋은 웹페이지 즐겨찾기