我无法在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;
请告诉我这是可能的,我遗失了一些东西。
提前致谢