I have an app that is currently made in UIKit, and I would like to fully migrate it to SwiftUI, removing all traces of UIKit.
I assume that replacing Main.storyboard
and all of the ViewController
s with a SceneDelegate
and ContentView
won't be suffice for the migration.
What do I need to change in the project settings or overall to remove all traces of UIKit and replace it with SwiftUI? Is this even possible? Do I need to just create a new project and copy over all the custom settings?