1

我已经为此工作了几天,感到很困惑。我正在尝试在核心图中制作一个图表,允许用户推送数据点并获取坐标。我制作了一个示例应用程序,它只制作了一个线性图。我的问题是我无法使用触摸功能。我在核心情节网站上引用了许多情节,但我无法让它在我的应用程序中工作。这就是我所做的;

在我的标题中,我创建了一个属性 CPTPlotSpaceAnnotation *annotation。我还使用了界面 ViewController : UIViewController 。

在我的实现中,我合成了注释。在我的 ViewDidAppear 方法中,我使用 CGPointMake 创建了一个数据数组。

NSMutableArray *linearstuff = [NSMutableArray array];

for (int i = 0; i < 100; i ++)
{
    float y = (b * (l)) + c;
    [linearstuff addObject:[NSValue valueWithCGPoint:CGPointMake(l, y)]];
    l = l + inc;
}

self.data = linearstuff;
[self initPlot];

我的方法 initPlot 配置图形并且有几个配置方法。因此,在我称为 configurePlots 的方法中,我分配并初始化了一个称为 linearGraph 的 CPTScatterPlot。我也在该方法中使用了 linearGraph.plotSymbolMarginForHitDetection 。然后对于 plotSymbolWasSelectedAtRecordIndex,我做了以下。

- (void)scatterPlot:(CPTScatterPlot *)plot plotSymbolWasSelectedAtRecordIndex:(NSUInteger)index
{
NSLog(@"touch");
CPTGraph *graph = self.hostView.hostedGraph;

if (_annotation)
{
    [graph.plotAreaFrame.plotArea removeAnnotation:_annotation];
    _annotation = nil;
}

CPTMutableTextStyle *annotationTextStyle = [CPTMutableTextStyle textStyle];
annotationTextStyle.color = [CPTColor whiteColor];
annotationTextStyle.fontSize = 16.0f;
annotationTextStyle.fontName = @"Helvetica-Bold";

NSValue *value = [self.data objectAtIndex:index];
CGPoint point = [value CGPointValue];
NSString *number1 = [NSString stringWithFormat:@"%.2f", point.x];
NSString *number2 = [NSString stringWithFormat:@"%.2f", point.y];

NSLog(@"x and y are, %.2f, %.2f", point.x, point.y);
NSLog(@"number1 and number2 are, %.2f, %.2f", point.x, point.y);

NSNumber *x = [NSNumber numberWithFloat:point.x];
NSNumber *y = [NSNumber numberWithFloat:point.y];

NSArray *anchorPoint = [NSArray arrayWithObjects: x, y, nil];

NSString *final = [number1 stringByAppendingString:number2];
NSLog(@"final is %@",final);


CPTTextLayer *textLayer = [[CPTTextLayer alloc] initWithText:final style:annotationTextStyle];
_annotation = [[CPTPlotSpaceAnnotation alloc] initWithPlotSpace:graph.defaultPlotSpace anchorPlotPoint:anchorPoint];
_annotation.contentLayer = textLayer;
_annotation.displacement = CGPointMake(0.0f, 0.0f);
[graph.plotAreaFrame.plotArea addAnnotation:_annotation];
}

我试图按照我在核心情节网站上看到的内容进行操作。我拿了我的数组并得到了索引。我将这些值放在一个 NSNumber 中,为注释创建一个字符串。但是,它没有出现在图表上。有谁知道我做错了什么?任何见解将不胜感激。我在这里阅读了许多关于 SO 的核心情节问题,但找不到对我的情况有帮助的东西。先感谢您。

4

1 回答 1

1

对于任何关注此的人。我首先要再次感谢 Eric Skroch 的所有帮助!!!!但我终于发现我做错了什么。我已经将 viewController 设置为绘图委托,但是,我在制作绘图时并没有这么说。我添加了 linearGraph.delegate = self; 现在调用了 plotSymbol... 方法!谢谢@Eric Skroch。

于 2012-09-17T15:14:24.997 回答