如何将用 C 编写的现有项目与基于 iphone 视图的应用程序项目集成?
我想问一下,我是否有一个用 C 编写的项目和另一个基于视图的 iphone 应用程序项目。当我在 iphone 项目中工作时,如何从 C 库访问 C 方法、属性,我的意思是,如何在 iphone 应用程序中使用 C 项目?
任何帮助将不胜感激,谢谢。
I would like to ask that if I have a project written in C and another project of view-based iphone application. How can I access that C methods, properties from the C library while I am working in the iphone project, I mean, how can I use the C project in iphone app?
Any help would be appreciated, Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C API 可以直接从 Objective-C 调用,不需要任何特殊技巧 - 就像 C 一样,#include 头文件并调用函数。
C APIs can directly be called from Objective-C, there are no special tricks required - just like C, #include the header file and call the function.