Haxe 可以为 iOS 原生方法创建库吗?
Flash 打包程序无法 适用于 iOS 的 Adobe Packager:将原生 iOS 代码与 Flash 捆绑在一起?
Haxe 可以做到吗?
Flash packager can't Adobe Packager for iOS: Bundling native iOS code together with Flash?
Could Haxe do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这绝对是可能的!
http://www.haxenme.org
NME 支持 C、C++、Objective-C 和 Java 代码扩展。连接它非常容易,因此您可以像任何其他方法一样在 Haxe 中调用它。
以下是一些扩展程序示例:
http://code.google.com/p/nme-extensions
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
要使用 Haxe 构建 iOS 应用程序,您可以使用 Haxe/C++ 后端。使用这个后端,如果其他方法都失败,您可以编写内联 C++,这样您就可以与几乎任何本机接口进行交互。
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.