스토리보드 없이 코드로 화면 진입점 설정하는 법 xcode 11 부터 멀티 윈도우를 지원하기 위해 SceneDelegate가 추가되었다. SceneDelegate 지우고 그냥 기존처럼 AppDelegate만 설정해줘도 되지만, SceneDelegate에서 code base로 화면 진입점을 설정해보았다. 방법은 비슷하다 1. Storyboard 삭제 2. Info.plist 에서 Storyboard Name 삭제 3. TARGETS - General - Deployment Info - Main Interface 에서 "Main" 지워주기 4. SceneDelegate에서 화면 진입점 설정 func scene(_ scene: UIScene, willConnectTo session: UISceneSession..