在我的应用程序中,我有一个MapView和一个注释。第一次触摸引脚显示它的视图,但我找不到在另一个触摸上删除/隐藏它。 感谢
答案 0 :(得分:0)
从地图视图中删除指定的注释对象。
- (void)removeAnnotation:(id < MKAnnotation >)annotation
参数
注释: 要删除的注释对象。该对象必须符合MKAnnotation协议。
要删除注释视图,请仅查看此question
[mapView deselectAnnotation:[mapView.selectedAnnotations objectAtIndex:0] animated:YES];