我无法让Core Plot在我的iPhone应用程序中运行。我按照以下步骤操作:
CorePlot的五个步骤
1. Copy the CorePlotSDK directory to ~/Library/SDKs/
2. Add to your project's .PCH file:
#import <CorePlot/CorePlot.h>
3. Open Project -> Edit Project Settings and for All Configurations:
3a. Add to Additional SDKS:
$HOME/Library/SDKs/CorePlotSDK/${PLATFORM_NAME}.sdk
3b. Add to Other Linker Flags:
-ObjC -all_load -lCorePlot
4. Add the QuartzCore framework to the project.
5. Add a CPGraph to your application.
我尝试编译应用程序并收到以下错误:
error: There is no SDK with specified name or path '/Users/myusername/Documents/afolder/afolder/TestGA/Library/SDKs/CorePlotSDK/iphonesimulator.sdk
我通过在finder中导航到它来检查这个文件位置确实存在。那么为什么xcode认为不存在呢?我真的很难让谷歌代码工作。
答案 0 :(得分:2)
您可能从Core-Plot Wiki获得了这些说明,但也有第6步。您是否遵循了这些说明?如果它仍然不起作用,你是否看到这是实验性的,可能不起作用?然后尝试静态库安装说明。
此外,这不是Google项目,只是托管在Google Code上。 ;)