Iphone开发:MapKit,如何在没有针杆的情况下添加针脚?

时间:2012-07-04 04:44:46

标签: iphone mapkit

Mapkit上的

我想知道是否可以添加一个没有它的干的针,就像它只反映我们地图中的针头,而不是使用图像btw。

谢天谢地,

1 个答案:

答案 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;

希望这有帮助。

我发现你对堆栈溢出很新。确保将此答案或任何其他答案标记为正确答案。