我需要在MKMapview上添加大量注释,动画会让人觉得图钉落在地图上会花费大量时间来显示所有这些注释。
任何人都可以帮助我?
抱歉我的英文!感谢
答案 0 :(得分:5)
您可以禁用使用animatesDrop
属性
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation{
MKAnnotationView *annView =[[[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"annotation"] autorelease];
annView.animatesDrop=FALSE;
}