iPhone MKMapView force callout bubble
Posted
by Mark
on Stack Overflow
See other posts from Stack Overflow
or by Mark
Published on 2010-05-11T11:20:24Z
Indexed on
2010/05/11
11:24 UTC
Read the original article
Hit count: 424
Is it possible to force the call out bubble to be open all the time? I tried putting the following code in didAddAnnotionViews:
for (id<MKAnnotation> currentAnnotation in mapView.annotations) {
[mapView selectAnnotation:currentAnnotation animated:NO];
}
Which works, however, when I single tap the MKMapView the bubble disappear. I want to avoid this behavior.
© Stack Overflow or respective owner