0

我已经下载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

4

1 回答 1

0

谢谢大家。我已经解决了这个问题。我只是忘记添加-ObjC -all_loadmu 项目目标构建设置。请按照以下步骤避免我的问题,

1. Copy the CorePlotHeaders to your Xcode project

2. Copy libCorePlotCocoaTouch.a to your Xcode project

3. Add to Other Linker Flags in your target build settings:

-ObjC -all_load

谢谢。

于 2011-12-26T05:53:16.990 回答