I have an app including a MKMapView with MKPinAnnotationViews. Each time I select an annotationView, the subtitle must be updated and the new subtitle appears.
In order to update the subtitle I wrote this code :
- (void) mapView:(MKMapView *)mapView
didSelectAnnotationView:(MKAnnotationView *)view
{
((MyAnnotation *) view.annotation).subtitle = //new subtitle...
}
Therefore, when I select my annotationView, the subtitle is properly updated but the callout bubble doesn't appear properly. It is cut in several parts an the arrow doen't point on the pin anymore. I seems that the callout view'size is not updated (or something like that). What can I do ?
Thank you very much ! Gilles