2

我在 iOS 5 上使用 Core Plot 1.0 在带有散点图的 xy 图中的自定义刻度位置绘制图标。我在 iPad 3 上遇到了性能问题,允许用户交互和水平滚动图表。我开始研究使用 CPTGraphHostingView 的 collapsesLayers 属性作为潜在的解决方案。启用它对我来说效果很好,除了一个我还没有解决的特定问题。我设置为渲染图像的自定义轴标签将不会显示。我想知道是否有人对可能是什么原因有任何想法。据我所知,轴标签仍然正确定位在正确的自定义刻度位置。我的外部代码的唯一区别是将 collapsesLayers 从 NO 交换为 YES。

这是我构建轴标签的方式:

+ (CPTAxisLabel *)buildIconAxisLabelAtLocation:(CGFloat)location withImageNamed:(NSString *)imageName
{
CPTLayer *imageLayer = [[CPTLayer alloc] initWithFrame:CGRectMake(0, 0, 16, 16)];

UIImage *image = [UIImage imageNamed:imageName];

CALayer *imageSubLayer = [[CALayer alloc] init];
imageSubLayer.frame = imageLayer.frame;
imageSubLayer.contents = (id)image.CGImage;

[imageLayer addSublayer:imageSubLayer];

CPTAxisLabel *iconLabel = [[CPTAxisLabel alloc] initWithContentLayer:imageLayer];
iconLabel.offset = 8;
iconLabel.tickLocation = CPTDecimalFromCGFloat(location);
iconLabel.rotation = M_PI;

return iconLabel;
}

任何帮助表示赞赏。

4

1 回答 1

2
  1. Core Plot 图中的每一层都应该是一个CPTLayer或一个子类。这对布局和绘图有很多影响。

  2. Core Plot 不渲染 layer contents。改用CPTBorderedLayer带有图像填充的 a 。

我会尝试这样的事情:

UIImage *image = [UIImage imageNamed:imageName];
CPTImage *background = [CPTImage imageWithCGImage:image.CGImage];
CPTBorderedLayer *imageLayer = [[CPTBorderedLayer alloc] initWithFrame:CGRectMake(0, 0, 16, 16)];
imageLayer.fill = [CPTFill fillWithImage:background];   
于 2012-08-28T00:14:34.030 回答