我尝试了几件事,但无法解决。
我在地图上有10个自定义注释,具体取决于可见区域。
现在我有下一个和前一个按钮。单击必须显示注释的标注。
即如果我点击下一个按钮,则会出现注释1的标注,当我再次点击下一步时,第一个标注将隐藏,第二个标注将出现。
我试过了
[self.mapView selectAnnotation:self.nextSelectedAnnotationView.annotation animated:YES]
和
[self.mapView deselectAnnotation:self.selectedAnnotationView.annotation animated:YES];
但主要问题是如何在这里获取注释?
我已尝试NSArray* selectedAnnotations=self.mapview.annotations
来获取注释数组
id annotationView =[selectedAnnotations objectAtIndex:i];
[self.mapView selectAnnotation:annotationView animated:YES];
但没有运气:(
解决我的问题的任何其他方式。??
答案 0 :(得分:0)
NSArray *selectedAnnotations = mapView.selectedAnnotations;
for(id annotationView in selectedAnnotations) {
[mapView deselectAnnotation:[annotationView annotation] animated:NO];
}