Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On the maps app in the IPad when you tap a pin you get a normal annotation with an "i" instead of a disclosure indicator. A further tap on the "i" reveals a popover view controller like this.

map popover example

Is there a way to easily achieve this?

share|improve this question

2 Answers

up vote 34 down vote accepted

First add an annotation to the map and in the viewForAnnotation method, set the rightCalloutAccessoryView to a button of type, say, UIButtonTypeDetailDisclosure (I don't think the blue info button is available by default).

Pressing the button will call the calloutAccessoryControlTapped delegate method. In this method, deselect the annotation and show your popover. For example:

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{
    [mapView deselectAnnotation:view.annotation animated:YES];

    YourContentViewController *ycvc = [[YourContentViewController alloc] init...
    UIPopoverController *poc = [[UIPopoverController alloc] initWithContentViewController:ycvc];
    [ycvc release];

    //hold ref to popover in an ivar
    self.annotationPopoverController = poc;

    //size as needed
    poc.popoverContentSize = CGSizeMake(320, 400);

    //show the popover next to the annotation view (pin)
    [poc presentPopoverFromRect:view.bounds inView:view 
        permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

    [poc release];
}

YourContentViewController is a subclass of UIViewController which you can code like any other view controller. The Maps app looks like it has UITableView in the content.

share|improve this answer
Great answer, really detailed. – Robert Apr 7 '11 at 16:37
In the Maps app there is an interesting animation in this scenario, the rather than the the smaller bubble being dismissed and the new popover presented, the small bubble actually expands to fit the popover view. Any ideas how to accomplish this? – Chris Wagner Aug 17 '11 at 17:39
@Chris Wagner: Don't know how Maps app does it but try initially displaying popover with small height and then, using timer or performSelector:withObject:afterDelay, manually animating popoverContentSize and re-presenting popover with updated rect (origin shifted up and height increased). Another option might be to first display/animate regular custom UIView that expands from middle and then display final-size popover over that (and remove custom UIView below). In the Maps app, callout also shifts left/right and this can be done by updating view.calloutOffset. – Anna Karenina Aug 17 '11 at 19:09
1  
annotationPopoverController is an ivar/property in the MKMapView's delegate, as the comment indicates. – Paul Lynch Nov 9 '11 at 9:35

It appears that to have a better position for the popover you must present it from this rect:

CGPoint lc_point = [mapView convertCoordinate:view.annotation.coordinate toPointToView:mapView];
CGRect lc_frame = CGRectMake(lc_point.x,lc_point.y-view.frame.size.height,0,0);
share|improve this answer

protected by Community Jan 17 at 20:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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