2012-03-07 2 views

답변

5

당신은

- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation{ 

MKAnnotationView *annView =[[[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"annotation"] autorelease]; 


     annView.animatesDrop=FALSE; 
} 
+0

가 대단히 감사합니다 animatesDrop 속성에 애니메이션을 삭제하지 않도록 설정할 수 있습니다! – Jonathan