Can Haxe create a library for its own iOS method?

2 answers

To create iOS applications using Haxe, you use the Haxe / C ++ backend. Using this backend, you can write embedded C ++ if all else fails, so you can interact with almost something native.

+6
source

Yes, it is definitely possible!

http://www.haxenme.org

NME supports C, C ++, Objective-C, and Java code extensions. It is pretty easy to plug in, so you can name it in Haxe just like any other method.

Here are some examples of extensions:

http://code.google.com/p/nme-extensions

+8
source

Source: https://habr.com/ru/post/1395092/


All Articles