我已经下载Core-Plot Header 9.0
并添加到我的新项目中。我对绘制图表和使用 Core-Plot 框架非常陌生。我已经CPTTestApp-iPhone
从 core-plot 示例项目下载了示例项目。我打开了这个项目,它包含CorePlot-Cocoa Touch.xcodeproj
如果我尝试从 XCode4.2 自动运行这个项目 XCode3.2.4 应用程序将打开。CPTTestAppScatterPlotController.h
我刚刚从我的新项目中复制并粘贴了源代码。有CPTTestAppScatterPlotController.h
一个笔尖文件,但我没有任何笔尖文件,我也想以编程方式完成。所以,我只是在我的项目中更改了这些行,CPTTestAppScatterPlotController.h
如下代码所示,
graph = [[CPTXYGraph alloc] initWithFrame:CGRectZero];
CPTTheme *theme = [CPTTheme themeNamed:kCPTDarkGradientTheme];
[graph applyTheme:theme];
CPTGraphHostingView *hostingView = [[CPTGraphHostingView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
hostingView.hostedGraph = graph;
hostingView.collapsesLayers = NO;
//hostingView.collapsesLayers = YES; // Setting to YES reduces GPU memory usage, but can slow drawing/scrolling
[self.view addSubview:hostingView];
但是,我没有改变的所有功能CPTTestAppScatterPlotController.h
。项目仍然没有运行,它显示Build Succeeded
。我怀疑我需要CorePlot-Cocoa Touch.xcodeproj
在我的新项目中导入吗?我该如何运行我的项目?请帮助我运行我的项目。我在谷歌上搜索了很多,都建议为初学者这个项目CPTTestApp-iPhone
。我也只尝试这个项目。提前致谢。等待您的出色解决方案。这是我运行项目时发生的错误*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSDecimalNumber cgFloatValue]: unrecognized selector sent to instance
。