将外部库导入到 Xcode 项目中
由于某种原因,当我尝试将库导入到我的 xcode 项目中时,它无法识别它。它说:
Libxml/xmlversion.h:没有这样的文件或目录
等,等等
为什么我会得到这个?我导入了这些,并在“链接框架”文件夹中看到它们。实际上,我刚刚导入了另一个应用程序框架/库和代码,以便我可以将其添加到我的应用程序中...它在我复制的另一个应用程序中进行编译,但是当我导入到我的应用程序中时,它不起作用。
For some reason, when I try importing a library into my xcode project, it's not recognizing it. It says:
Libxml/xmlversion.h: No such file or directory
ect, ect
Why am I getting this? I'm imported these and I see them in my "linked frameworks" folder. I actually just imported another applications frameworks/libaries and code so I can add it to my app...it compiles in the other app that I copied from, but when I import into mine, it doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加到 xcode 项目设置中的“标题搜索路径”。对于libxml2,路径是这样的:
${SDKROOT}/usr/include/libxml2/libxml/**
You need to add to the 'Header Search Paths' in your xcode project's settings. For libxml2, the path is this:
${SDKROOT}/usr/include/libxml2/libxml/**