我想将自定义图像设置为 aSKAnnotation
但是当我设置图像路径时,标记不会出现。我使用以下代码设置标记图像:
annotation.imagePath = [[NSBundle mainBundle] pathForResource:@"64-map-test" ofType:@"png"];
annotation.imageSize = 64;
当我使用默认图像时:
annotation.annotationType = SKAnnotationTypeGreen;
标记确实正确显示。
如何在地图注释上设置自定义图像?