如何在 iPhone 的本机代码中调用 PhoneGap 应用程序

发布于 2025-01-03 07:13:29 字数 93 浏览 0 评论 0原文

我使用 iPhone 的phonegap 框架开发了一个静态库应用程序“a”,我想将该静态库包含在另一个 Xcode 本机项目“b”中。是否有人有想法,请指导我。提前致谢。

I developed one static library application "a" by use of phonegap framework for iphone and i want to include that static library in another Xcode native project "b" .Is there anyone have idea then please guide me .Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷荒 2025-01-10 07:13:29

选择目标&转到构建阶段,打开复制标头部分并将除 .pch 文件之外的所有标头文件从项目移动到公共部分。

在此处输入图像描述

转到“构建设置”>在打包中将公共标头文件夹路径设置为 $(PRODUCT_NAME) &在部署中将安装目录设置为 $(BUILT_PRODUCTS_DIR)。

在此处输入图像描述

现在单击 cmd+b &在构建文件夹中,您将能够看到所有头文件(.h)和库文件(.a)。拖放将这些文件放入您的本机 Xcode 项目中并使用它们。

Select Targets & go to build phases, open copy headers section and move all headers files except .pch file from project to public section.

enter image description here

Go to Build Settings & in Packaging set Public Header Folder Path as $(PRODUCT_NAME) & in Deployment set Installation Directory as $(BUILT_PRODUCTS_DIR).

enter image description here

enter image description here

Now click on cmd+b & in build folder you will be able to see all header files(.h) & library file(.a). Drag & drop those files in your native Xcode project and use them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文