Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any way to use some Scala for iOS coding?

Tags:

I want to be able to use Scala to code iOS programs. Any tools available for this ?

like image 523
Serge B Avatar asked Nov 19 '12 19:11

Serge B


People also ask

Is it possible to code on iOS?

While most developers use popular IDEs like Xcode and Sublime Text on their Macs, few realize that their iPhones and iPads can also handle coding apps.

What coding is used for iOS?

Swift is a robust and intuitive programming language created by Apple for building apps for iOS, Mac, Apple TV, and Apple Watch.

Can you code iOS apps in C++?

Unlike Android which needs a special API (the NDK) to support native development, iOS supports it by default. C or C++ development is more straightforward with iOS because of a feature called 'Objective-C++'. I'll discuss what Objective-C++ is, its limitations and how it's used for building iOS apps.

Can u code in Java for iOS?

Answering your question – Yes, actually, it's possible to build an iOS app with Java.


1 Answers

You can run JavaScript on iOS, so you could compile your Scala to JavaScript using Scala.js. This has obvious huge limitations - I wouldn't want to try to code actual native iOS UI - but might be practical for some cross-platform logic. Combining this with React Native might be interesting.

There's also Scala Native as of a couple months ago; that should probably run on iOS. It's not ready for production use, but keep an eye on it.

like image 64
James Moore Avatar answered Nov 08 '22 06:11

James Moore