如何在加载时删除地图动画?

时间:2012-01-10 04:54:09

标签: ios mkmapview

我正在开发一款使用地图及其功能的应用。地图显示引脚注释的动画。缩放时我不想在地图中使用该动画。有没有办法删除这个动画?

1 个答案:

答案 0 :(得分:0)

viewForAnnotation方法

 - (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation{
    MKPinAnnotationView *annView =[[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"] autorelease];


        annView.canShowCallout = YES;

        annView.pinColor = MKPinAnnotationColorGreen;
        annView.animatesDrop=False;
        annView.canShowCallout = YES;

        annView.calloutOffset = CGPointMake(-5, 5);
    return annView;
    }

此处annView.animatesDrop=False;将关闭投放动画