在 Mapkit 上,
我想知道是否可以添加一个没有其茎的图钉,就像它只反映我们地图中的针头,而不是使用图像顺便说一句。
亲切的谢谢,
是的,有可能。为此,您必须使用MKAnnotationView
而不是MKPinAnnotationView
. 并且不要使用 annotation.animatesDrop 属性。
以下是您可以使用的示例代码viewForAnnotation
,
annotation = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"try"];
annotation.canShowCallout = YES;
annotation.image = [UIImage imageNamed:@"image.png"];
return annotation;
希望这可以帮助。
我看到你对堆栈溢出很陌生。确保将此答案或任何其他答案标记为正确答案。