2010-05-27 13 views

risposta

30

Vuoi semplicemente far sparire la bolla del callout ma mantenere il pin?
Se sì, procedere come segue:

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