Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4329714
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T09:51:40+00:00 2026-05-21T09:51:40+00:00

On the maps app in the IPad when you tap a pin you get

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T09:51:41+00:00Added an answer on May 21, 2026 at 9:51 am

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a universal app. On the iPad, when pressing an annotation pin it
I have noticed that on the iPad the google maps app has a very
In the iPad Maps app, when you lift the page curl, you see a
I have a view with a map and a button (like the Maps app
If you have used the Google Maps web app on your iphone or ipad
The thumbnail image shown in the info view of Maps app is UIImageView or
It works the same way in Maps.app: when you tap and hold for a
I'm wondering if i could start the maps app in get directions mode with
I have a com.google.android.maps.MapView in my application. When using the normal view I do
In the Google Maps app on iPhone, the toolbar in the buttom is still

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.