项目中核心图的使用
我在我的项目中使用 core-plot ,该项目是在其他一些运行良好的系统中完成的。当我尝试在我的系统中构建相同的项目时,我收到许多错误,其中最主要的错误是
coreplot-cocotouch.h 没有这样的文件或目录。
如何调试这个错误?
I am using core-plot in my project , the project was done in some other systems where it was working well. when i try to build the same project in my system , i get many errors one among them which is predominant is
coreplot-cocoatouch.h no such file or directory.
how to debug this error ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题可能是您导入它的项目使用了对 coreplot 项目的交叉引用,当您将其传输到您的系统时,您的系统中可能不存在 coreplot 项目。这可能是问题之一,因为 coreplot 库通常作为交叉引用添加,并且最好不要在工作项目中复制完整的 core-plot 项目来访问其库。
the problem might be that the project from where u imported it have used the cross reference to the coreplot project,and when you have transfered it to you system you might not have the coreplot project existing in your system. This might be one of the problem because coreplot library is generally added as a cross reference and it is not preferable to copy complete core-plot project in the working project to access its library.
您必须将 core-plot 源复制到您的系统。并在您的应用程序中引用 CorePlot-CocoaTouch.xcodeproj。您必须更改项目设置才能使 core-plot 正常工作。您可以参考这些链接。 http://code.google.com/p/core-plot/wiki/UsingCorePlotInApplications
http://www.switchonthecode.com/tutorials/using -iPhone 应用程序中的核心图
You have to copy core-plot source to your system. And reference CorePlot-CocoaTouch.xcodeproj in your application. You have to change your project settings to make core-plot to work. You can refer these links. http://code.google.com/p/core-plot/wiki/UsingCorePlotInApplications
http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application