Which framework should I choose for iOS app - SwiftUI or UIKit?

Viewed 46

Currently, I am in the pre-production stage to develop Native iOS application. The main function of our MVP will be the chat room. Of course, I think we will add more functions such like - VR or integrating crypto currency in the future. But I can't decide whether to use SwiftUI or UIKit. Of course, people are recommending UIKit because most of the current apps are developed with UIKit and it has so much the references.

Which one should I choose? SwiftUI or UIKit?

1 Answers

Question urself What are ur targetted users.

If u want to target all iOS users i.e. old operating sys previous versions than iOS 14. U should go for UIkit but if u want to target users that have devices with upgraded operating i.e. iOS14+ than u should go for SwiftUI because it doesnt even completely support iOS13 too. And doesnt support devices lesser than version iOS 13.

Related