Map.app のようにピンが上から落ちてくるアニメーションを MapKit で実装する方法です。 ピンのアノテーション MKPinAnnotationView の場合は簡単です。animatesDrop = YES を指定するだけです。 -(MKAnnotationView*)mapView:(MKMapView*)_mapView viewForAnnotation:(id )annotation { if (annotation == mapView.userLocation) { return nil; } MKPinAnnotationView *annotationView; NSString* identifier = @"Pin"; annotationView = (MKPinAnnotationView*)[mapView dequeueReusableAnnotati