我无法在 CorePlot 中找到任何关于可拉伸图像的示例或任何其他问题。我正在尝试在我的图表中使用注释,其图像必须是可拉伸的(图像的角必须保持不变)。
我设置了fill
注释,fillWithImage:
我认为我在那个地方是对的,但是图像完全调整了自身的大小,同时也拉伸了角落。
我尝试了所有我知道或见过UIImage
的组合。CPTImage
但无济于事。
一个例子是:
UIImage *annotationImage = [[UIImage imageNamed:@"image.png"] stretchableImageWithLeftCapWidth:13 topCapHeight:12];
CPTFill *annotationFill = [CPTFill fillWithImage:[CPTImage imageWithCGImage:annotationImage.CGImage]];
borderLayer.fill = annotationFill;
请告诉我这是可能的,我错过了一些东西。
提前致谢