2

I will soon start mobile development on iOS and I would like to know if it possible to create an app with Go along with React Native ​​(for example) without using Swift or Objective-C.

I searched for answers about Quora and Google, but none are precise enough.

Fantasim
  • 876
  • 1
  • 12
  • 32

3 Answers3

3

There are alternatives to native iOS apps without Swift or Obj-c, such as HTML5, Xamarin (C#), PhoneGap, Cordova, etc. but these alternatives have sacrifices.

Most of your extra coding time would be invested in workarounds to make these alternative technologies work. If you want your app to perform better than a web app, then you should use Obj-C or Swift.

MSU_Bulldog
  • 3,501
  • 5
  • 37
  • 73
1

You can build basic (and more with packages) iOS/Android apps using react-native. It is a great tool to build iOS apps using js. There are loads of modules and community support (https://js.coach/) to help you build out of the basics. I've been building apps on react-native and the result is on par with native apps. There is a small learning curve in react-native but it is definitely worth it

Nishanth Shankar
  • 1,966
  • 1
  • 14
  • 19