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.

I have some custom annotations, and when pressed on the callout accessory control, a popup appears to show more information (like in the maps app from Apple).

Every thing works, except that they don't animate, even when animate is set to YES?

code:

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

    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];

    _basePopupViewController = [storyboard instantiateViewControllerWithIdentifier:@"BasePopupViewController"];
    _popover = [[UIPopoverController alloc] initWithContentViewController:_basePopupViewController];

    [_popover presentPopoverFromRect:view.bounds inView:view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES]; 
}
share|improve this question
what is basepoupController that you are using in the above context?? – Dheeraj Kaveti Nov 13 '12 at 16:42
@DheerajKaveti It is the UIViewController that is showed in the popover. It was a map based game with enemy bases, so thats why the name is basePopupViewController. It shows the health, attack power, etc of the base. – Juzzz Nov 14 '12 at 9:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.