我正在使用Core Plot来显示价格的时间序列。当用户触摸图形时,我在该点显示可拖动的垂直线。时间序列和可拖动行都是CPTScatterPlot
内的CPTXYGraph
个对象。这非常有效 - 在时间序列图表中拖动线条是可以接受的。
下一步是在用户选择的位置显示价格和日期。雅虎股票应用程序有一个很好的功能,它显示标签中的价格移动,就好像它附加到可拖动线的顶部。我试图使用CPTPlotSpaceAnnotation
中显示的文字复制此内容。这有效,但它会严重影响性能。经过一番挖掘后,我发现CPTLayer drawInContext:
被多次调用 - 看起来每次重绘文本标签时都会重绘整个图形(实际上我的日志意味着它被重绘了两次)。
以下是绘制标签的代码(正在进行中)。它由plotSpace:shouldHandlePointingDeviceDraggedEvent:atPoint:
调用。
- (void)displayPriceAndDateForIndex:(NSUInteger)index atPoint:(CGPoint)pointInPlotArea
{
NSNumber * theValue = [[self.graphDataSource.timeSeries objectAtIndex:index] observationValue];
// if the annotations already exist, remove them
if ( self.valueTextAnnotation ) {
[self.graph.plotAreaFrame.plotArea removeAnnotation:self.valueTextAnnotation];
self.valueTextAnnotation = nil;
}
// Setup a style for the annotation
CPTMutableTextStyle *annotationTextStyle = [CPTMutableTextStyle textStyle];
annotationTextStyle.color = [CPTColor whiteColor];
annotationTextStyle.fontSize = 14.0f;
annotationTextStyle.fontName = @"Helvetica-Bold";
// Add annotation
// First make a string for the y value
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setMaximumFractionDigits:2];
NSString *currentValue = [formatter stringFromNumber:theValue];
NSNumber *x = [NSNumber numberWithDouble:[theDate timeIntervalSince1970]];
NSNumber *y = [NSNumber numberWithFloat:self.graphDataSource.maxValue];
NSArray *anchorPoint = [NSArray arrayWithObjects:x, y, nil];
// Then add the value annotation to the plot area
float valueLayerWidth = 50.0f;
float valueLayerHeight = 20.0f;
CPTTextLayer *valueLayer = [[CPTTextLayer alloc] initWithFrame:CGRectMake(0,0,valueLayerWidth,valueLayerHeight)];
valueLayer.text = currentValue;
valueLayer.textStyle = annotationTextStyle;
valueLayer.backgroundColor = [UIColor blueColor].CGColor;
self.valueTextAnnotation = [[CPTPlotSpaceAnnotation alloc] initWithPlotSpace:self.graph.defaultPlotSpace anchorPlotPoint:anchorPoint];
self.valueTextAnnotation.contentLayer = valueLayer;
// modify the displacement if we are close to either edge
float xDisplacement = 0.0;
...
self.valueTextAnnotation.displacement = CGPointMake(xDisplacement, 8.0f);
[self.graph.plotAreaFrame.plotArea addAnnotation:self.valueTextAnnotation];
// now do the date field
...
}
是否完全重绘了预期的行为?是否有更好的方法来管理注释而不会破坏它并在每次调用方法时重新创建它?
答案 0 :(得分:1)
每次都不需要销毁和创建注释。创建完成后,只需更新anchorPoint
即可。删除和添加注释可能与常量重绘有关。