오늘은 스토리보드 없는 UiKit을 세팅해보겠습니다. 스토리보드가 없으면 뭐가 좋은지도 알아 보겠습니다.
장점:
단점:

Info → Application Scene Manifest → Scene Configuration → Window Application Session Role → Item 0 → Storyboard Name 경로로 오셔서 Storyboard Name을 삭제해주세요

Main.storyboard를 삭제해주세요.
supports multiple windows로 클릭해주세요

Main storyboard file base name 의 Value를 삭제해주세요

SceneDelegate로 이동해주세요 SceneDelegate 안에 있는
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions)
이 함수 안에 있는
guard let _ = (scene as? UIWindowScene) else { return }
삭제 혹은 주석처리해주세요 그리고
guard let windowScene = (scene as? UIWindowScene) else { return }
window = UIWindow(frame: UIScreen.main.bounds)
let viewContoller = ViewController() // RootView 입니다
window?.rootViewController = viewContoller
window?.makeKeyAndVisible()
window?.windowScene = windowScene
이코드를 넣어주세요.

이렇게 해주시면 끝 입니다 !!
ViewController 아래 이코드를 추가해주세요.
struct ViewControllerRepresentable: UIViewControllerRepresentable {
typealias UIViewControllerType = ViewController
func makeUIViewController(context: Context) -> ViewController {
return ViewController()
}
func updateUIViewController(_ uiViewController: ViewController, context: Context) {
}
}
@available(iOS 13.0.0, *)
struct ViewPreview: PreviewProvider {
static var previews: some View {
ViewControllerRepresentable()
}
}

끝
참고해서 설정했어요!! 감사합니다 득령님~~