When I execute the following code snippet, the map zooms correctly to encompass all annotations, however the callouts are partially offscreen. What is the most elegant way of fixing that?
func mapView(mapView: MKMapView!, didAddAnnotationViews views: [AnyObject]!) {
// once annotationView is added to the map, get the last one added unless it is the user's location:
if let annotationView = views.last as? MKAnnotationView where !(annotationView.annotation is MKUserLocation) {
// show callout programmatically:
mapView.selectAnnotation(annotationView.annotation, animated: false)
// zoom to all annotations on the map:
mapView.showAnnotations(mapView.annotations, animated: true)
}
If I understand correctly, then I had the same issue. I'm not sure if this is the most "elegant" solution, but a simple delay did the trick for me. You could try something similar, like this:
Note that I used an arbitrary time of 0.75 seconds; this may be more or less than what you need - if you really want (I was lazy), you could make that number dependent on the distance you have to zoom in; or, be extra clever and find out how to get the zoom in time.
Enjoy!