1

我想将自定义图像设置为 aSKAnnotation但是当我设置图像路径时,标记不会出现。我使用以下代码设置标记图像:

annotation.imagePath = [[NSBundle mainBundle] pathForResource:@"64-map-test" ofType:@"png"];
annotation.imageSize = 64;

当我使用默认图像时:

annotation.annotationType = SKAnnotationTypeGreen;

标记确实正确显示。

如何在地图注释上设置自定义图像?

4

1 回答 1

0

不支持png-8文件格式。使用png-24文件可以正常工作。

于 2014-05-07T10:24:38.493 回答