4

Flash packager can't Adobe Packager for iOS: Bundling native iOS code together with Flash?

Could Haxe do it ?

Community
  • 1
  • 1
user310291
  • 36,946
  • 82
  • 271
  • 487

2 Answers2

8

Yes, this is definitely possible!

http://www.haxenme.org

NME has support for C, C++, Objective-C and Java code extensions. It is pretty easy to wire it up, so you can call it in Haxe just like any other method.

Here are some example extensions:

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

Joshua Granick
  • 1,017
  • 6
  • 6
6

To build iOS applications with Haxe you use the Haxe/C++ backend. Using this backend, you can write inline C++ if all else fails, so you can interface with pretty much anything native.

Gama11
  • 31,714
  • 9
  • 78
  • 100
back2dos
  • 15,588
  • 34
  • 50