,
我想知道是否可以添加一个没有它的干的针,就像它只反映我们地图中的针头,而不是使用图像btw。
谢天谢地,
答案 0 :(得分:1)
是的,这是可能的。为此,您必须使用MKAnnotationView
而不是MKPinAnnotationView
。并且不要使用annotation.animatesDrop属性。
以下是您可以在viewForAnnotation
,
annotation = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"try"];
annotation.canShowCallout = YES;
annotation.image = [UIImage imageNamed:@"image.png"];
return annotation;
希望这有帮助。
我发现你对堆栈溢出很新。确保将此答案或任何其他答案标记为正确答案。