Port UIKit App to SwiftUI

I have an app made in UIKit with a deployment target of 9.0 which I would like to apply SwiftUI to.

I would like my app to use SwiftUI while still being compatible with iOS 9.0 and later.

Does anyone know how to achieve this, because

SwiftUI is only in iOS 13.0 or later




Answered by andy_ in 628675022
That is not possible as the necessary system APIs and frameworks for SwiftUI only exist on iOS 13 and later devices.
Accepted Answer
That is not possible as the necessary system APIs and frameworks for SwiftUI only exist on iOS 13 and later devices.
There is no way to use SwiftUI with iOS 9. You have to set the min deployment target to iOS 13. With adoption rate of iOS 13 is now 81%, it's time to say good bye to iOS 9
Port UIKit App to SwiftUI
 
 
Q