2010-05-27 11 views

उत्तर

30

क्या आप सिर्फ कॉलआउट बबल को दूर करना चाहते हैं लेकिन पिन रखें?
हाँ, तो ऐसा करते हैं तो:

for (id currentAnnotation in self.mapView.annotations) {   
    if ([currentAnnotation isKindOfClass:[MyAnnotation class]]) { 
     [self.mapView deselectAnnotation:currentAnnotation animated:YES]; 
    } 
} 
संबंधित मुद्दे