2010-05-27 7 views

Respuesta

30

¿Desea hacer que la burbuja de llamada desaparezca, pero quédese con el alfiler?
En caso afirmativo, haga esto:

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