我正在开发一款使用地图及其功能的应用。地图显示引脚注释的动画。缩放时我不想在地图中使用该动画。有没有办法删除这个动画?
答案 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;
将关闭投放动画