0

在我的应用程序中,我有一个 MapView 和一个注释。第一次触摸显示它的视图的图钉,但我找不到在另一次触摸时删除/隐藏它。谢谢

4

1 回答 1

0

从地图视图中移除指定的注释对象。

- (void)removeAnnotation:(id < MKAnnotation >)annotation

参数

annotation:要删除的注释对象。该对象必须符合 MKAnnotation 协议。

要删除注释视图,只需检查此问题

[mapView deselectAnnotation:[mapView.selectedAnnotations objectAtIndex:0] animated:YES];
于 2012-09-20T11:25:19.980 回答