I'm working on a MKMapView with the usual colored pin as the location points. I would like to be able to have the callout displayed without touching the pin.

How should I do that? Calling setSelected:YES on the annotationview did nothing. I'm thinking of simulate a touch on the pin but I'm not sure how to go about it.

link|improve this question

66% accept rate
feedback

9 Answers

But there is a catch to get benvolioT's solution to work, the code

for (id<MKAnnotation> currentAnnotation in mapView.annotations) {       
    if ([currentAnnotation isEqual:annotationToSelect]) {
        [mapView selectAnnotation:currentAnnotation animated:FALSE];
    }
}

should be called from - (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView, and nowhere else.

The sequence in which the various methods like viewWillAppear, viewDidAppear of UIViewController and the - (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView is called is different between the first time the map is loaded with one particular location and the subsequent times the map is displayed with the same location. This is a bit tricky.

link|improve this answer
1  
Nothing tricky. Just needed to know to call: [mapView selectAnnotation] rather than [annotation setSelected]. Thanks! – bentford Oct 21 '09 at 1:24
Thank you so much! – Fulvio Dec 1 '10 at 12:34
Okay this worked the first time automatically. But now it's not working anymore? what the? - (void)mapViewDidFinishLoadingMap:(MKMapView *)_mapView { [mapView selectAnnotation:addAnnotation animated:YES]; } – Fulvio Dec 1 '10 at 12:39
2  
mapViewDidFinishLoadingMap is only triggered for the first time as the maps are cached. When the map is loaded from cache, mapViewDidFinishloadingMap isn't triggered anymore. – Niels R. Mar 16 '11 at 9:53
feedback
up vote 12 down vote accepted

Ok, here's the solution to this problem.

To display the callout use MKMapView's selectAnnotation:animated method.

link|improve this answer
1  
This doesn't help. I can call this and it won't always animate the selection. The first time, yes. Every time after that, no - even if the method is called. benvolioT's solution also doesn't work for me. Even if I call selectAnnotation:animated: directly, when the annotation is known, doesn't work. Same issues as before. :( – Joe D'Andrea Sep 2 '09 at 16:13
@Joe I believe you must remove the annotation before recalling in order for the animation to display. – Oh Danny Boy Jan 6 '11 at 17:15
feedback

Ok, to successfully add the Callout you need to call selectAnnotation:animated after all the annotation views have been added, using the delegate's didAddAnnotationViews:

- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views{
    for (id<MKAnnotation> currentAnnotation in mapView.annotations) {       
        if ([currentAnnotation isEqual: annotationToSelect]) {
            [mapView selectAnnotation:currentAnnotation animated:YES];
        }
    }
}
link|improve this answer
I found this to be the best way to do it as this method will be fired upon adding the annotation. – MaTaKazer Aug 16 '11 at 11:01
This method drops the callout together with the pin, is there a solution that can show the callout right after the pin is dropped to the map? – Michael Sep 23 '11 at 13:42
feedback

Assuming that you want the last annotation view to be selected, you can put the code below:

[mapView selectAnnotation:[[mapView annotations] lastObject] animated:YES];

in the delegate below:

- (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
{
    //Here
    [mapView selectAnnotation:[[mapView annotations] lastObject] animated:YES];
}
link|improve this answer
This would be the solution that worked for me! thank you much! – Toran Billups Jan 22 '11 at 3:41
feedback

This does not work for me. I suspect a bug in the MapKit API.

See this link for details of someone else for who this is not working: http://www.iphonedevsdk.com/forum/iphone-sdk-development/19740-trigger-mkannotationview-callout-bubble.html#post110447

--edit--

Okay after screwing with this for a while, here is what I've been able to make work:

for (id<MKAnnotation> currentAnnotation in mapView.annotations) {   	
    if ([currentAnnotation isEqual:annotationToSelect]) {
        [mapView selectAnnotation:currentAnnotation animated:FALSE];
    }
}

Note, this requires implementing - (BOOL)isEqual:(id)anObject for your class that implements the MKAnnotation protocol.

link|improve this answer
based on this I got [mapView selectAnnotation:[mapView.annotations objectAtIndex:0] animated:false]; to work to pick the first annotation. – Andiih Sep 14 '09 at 8:36
feedback

I read the API carefully and finally I found the problem:


If the specified annotation is not onscreen, and therefore does not have an associated annotation view, this method has no effect.

So you can wait some time (for example, 3 seconds) and then perform this action. Then it works.

link|improve this answer
feedback

If you just want to open the callout for the last annotation you added, try this, works for me.

[mapView selectAnnotation:[[mapView annotations] lastObject] animated:YES];

link|improve this answer
feedback

Due to something like the code shown by benvolioT, that I suspect exists in the system, when I used selectAnnotation:animation: method, it did not show the callOut, I guessed that the reason was because it was already selected and it was avoiding from asking the MapView to redraw the callOut on the map using the annotation title and subtitle.

So, the solution was simply to deselect it first and to re-select it.

E.g: First, I needed to do this in Apple's touchMoved method (i.e. how to drag an AnnotationView) to hide the callOut. (Simply using annotation.canShowAnnotation = NO alone does not work, since I suspect that it needs redrawing. The deselectAnnotaiton causes the necessary action. Also, deselecting alone did not do that trick, the callOut disappeared only once and got redrawn straight away. This was the hint that it got reselected automatically).

annotationView.canShowAnnotation = NO;
[mapView deselectAnnotation:annotation animated:YES];

Then, simply using the code below in touchEnded method did not bring back the callOut (The annotation has been automatically selected by the system by that time, and presumably the redrawing of the callOut never occrrs):

annotationView.canShowAnnotation = YES;
[mapView selectAnnotation:annotation animated:YES];

The solution was:

annotationView.canShowAnnotation = YES;
[mapView deselectAnnotation:annotation animated:YES];
[mapView selectAnnotation:annotation animated:YES];

This simply bought back the callOut, presumably it re-initiated the process of redrawing the callOut by the mapView.

Strictly speaking, I should detect whether the annotation is the current annotation or not (selected, which I know it is) and whether the callOut is actually showing or not (which I don't know) and decide to redraw it accordingly, that would be better. I, however, have not found the callOut detection method yet and trying to do so myself is just a little bit unnecessary at this stage.

link|improve this answer
feedback

Steve Shi's response made it clear to me that selectAnnotation has to be called from mapViewDidFinishLoadingMap method. Unfortunately i cannot vote up but i want to say thanks here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.