How Apple does It:
It is important to understand how Apple provides the pin and the callout bubble. They are both handled by the mapView, the MKPinAnnotationView does not provide the callout bubble. So when you add an MKAnnotationView subclass to the mapView that has canShowCallout enabled and you select it the MapView will add a UICalloutView (Private API) to the map in the correct location. The callout view is stored, at least temporarily, in the MKAnnotationView. So to recreate this behavior you will need to do a few things.
The hard parts of replacing the standard Apple MKPinAnnotationView are displaying the callout and attaching it to the mapView so that the pinView and the calloutView move together and when the callout appears, moving the view rectangle as little as possible to fit it onscreen. Also the nice callout triangle at the bottom should point at the annotation without resorting to centering the annotation in the screen. So you will need to know the anchor point for the callout bubble and take that into account when drawing.
Solution 1: Double annotations
This means you make the pin and callout annotations. You can get almost everything working. Animations, locating the callout near the pin. However, as you zoom things go wrong because you attached the callout at a lat/long coordinate. You can compensate by moving the annotation coordinate but only before and after the zoom. This means the annotation will be in the wrong place while zooming.
Solution 2: Attach the callout to the mapView
Again trying to leverage your map coordinates to attach to attach a callout in the right place. You can try this:
CLLocationCoordinate2D coordinate = [mapView convertPoint:pinAnnotationView.calloutOffset toCoordinateFromView:pinAnnotationView];
CGPoint anchorPoint = [mapView convertCoordinate:coordinate toPointToView:mapView];
The callout is in the right place and zooming works. Unfortunately, you can't scroll because the callout is now attached not to the underlying scrollview, but the mapView.
Solution 3: Add the callout as a subView of the Pin
This has its own challenges, like managing the placement of a callout view correctly, and scrolling the map so that the callout is on screen. If you are happy with not making sure the callout is on screen you can manage it as described using the setSelected methods in the annotationView. However, if you want to achieve Apple equivalent behavior you need to manage the adding of the callout from the mapView delegate. The upside of this method is that scrolling and zooming work correctly.
An Animation for the Callout
- (void)animateCalloutAppearance {
self.endFrame = self.frame;
CGFloat scale = 0.001f;
self.transform = CGAffineTransformMake(scale, 0.0f, 0.0f, scale, [self xTransformForScale:scale], [self yTransformForScale:scale]);
[UIView animateWithDuration:0.075f delay:0 options:UIViewAnimationCurveEaseOut animations:^{
CGFloat scale = 1.2f;
self.transform = CGAffineTransformMake(scale, 0.0f, 0.0f, scale, [self xTransformForScale:scale], [self yTransformForScale:scale]);
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.1 delay:0 options:UIViewAnimationCurveEaseInOut animations:^{
CGFloat scale = 0.90;
self.transform = CGAffineTransformMake(scale, 0.0f, 0.0f, scale, [self xTransformForScale:scale], [self yTransformForScale:scale]);
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.075 delay:0 options:UIViewAnimationCurveEaseInOut animations:^{
CGFloat scale = 1.0;
self.transform = CGAffineTransformMake(scale, 0.0f, 0.0f, scale, [self xTransformForScale:scale], [self yTransformForScale:scale]);
} completion:nil];
}];
}];
}
#pragma mark -
#pragma mark The helper methods
- (CGFloat)relativeParentXPosition {
return self.bounds.size.width / 2.0f;
}
- (CGFloat)xTransformForScale:(CGFloat)scale {
CGFloat xDistanceFromCenterToParent = self.endFrame.size.width / 2.0f - [self relativeParentXPosition];
CGFloat transformX = (xDistanceFromCenterToParent * scale) - xDistanceFromCenterToParent;
return transformX;
}
- (CGFloat)yTransformForScale:(CGFloat)scale {
CGFloat yDistanceFromCenterToParent = self.endFrame.size.height / 2.0f;
CGFloat transformY = yDistanceFromCenterToParent - yDistanceFromCenterToParent * scale;
return transformY;
}