I want to be able to display a custom callout for a custom annotation type (custom subclass of MkAnnotationView) on the iPhone. I would like to do this without any help of the map view's delegate, because in my scenario every annotation type has to be able to supply and configure its own view in order to be able to easily add new annotation types without modifying the map view delegate. So in a nutshell, is there a way to show a custom callout bubble when the only class I can modify is the custom MkAnnotationView subclass?
I've read the following questions:
- How do I display a UIPopoverView as a annotation to the map view? (iPad)
- iOS Mapkit Custom Callout
- Animating custom callout for MKAnnotationView in MKMapView with "pop in" effect
From these I know that it should be possible to show a UIPopoverController by overriding the
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
method of MkAnnotationView. The only problem is that UIPopoverController is only available on the iPad, but I need to do this on the iPhone.
So I thought that I should be able to use the setSelected:animated: method to add a custom UIView as a subview of the MkAnnotationView or the MkMapView and thus show my callout. Is that a good idea? If it is, how can I make sure that the custom callout moves properly with the map?
Thank you all for your help in advance!