Как скрыть выноску MKAnnotationView? - PullRequest
14 голосов
/ 27 мая 2010

Я пытаюсь скрыть AnnotationView, не касаясь булавки, это возможно? Спасибо! * * 1001

for (id currentAnnotation in self.mapView.annotations) {        
if ([currentAnnotation isKindOfClass:[MyAnnotation class]]) { 
    } 
}

1 Ответ

30 голосов
/ 27 мая 2010

Вы просто хотите, чтобы пузырь выноски исчез, но держите булавку? Если да, то сделайте это:

for (id currentAnnotation in self.mapView.annotations) {        
    if ([currentAnnotation isKindOfClass:[MyAnnotation class]]) { 
        [self.mapView deselectAnnotation:currentAnnotation animated:YES];
    } 
}
...