是否可以在iPhone项目中使用一些C源代码?
我找到了一个支持多种语言的语音合成器(http://espeak.sourceforge.net/index.html)。但是可用的源代码是用 C 编写的。
我该怎么做才能使其在 iPhone 上运行?
I found a speech synthesizer that supports many languages (http://espeak.sourceforge.net/index.html). But the source code that is available is written in C.
What can i do to make it work on iPhone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Objective-C 是 C 的严格超集。这意味着您可以在 Obj-C 项目中使用任何 C 代码。
Objective-C is a strict super set of C. Which means you can use any C code in your Obj-C project.
是的,只要它已被移植到 LLVM C 编译器即可。您可以从中创建一个静态链接框架,然后链接到您的项目中。
Apple 不允许动态加载框架。
Yes, as long as it's been ported to the LLVM C-compiler. You can create a statically linked framework out of it, and then link into your project.
Apple does not allow dynamically-loaded frameworks.