aV.frame = CGRectMake(aV.frame.origin.x, aV.frame.origin.y - 300, aV.frame.size.width, aV.frame.size.height);
[UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:0.45]; [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; [aV setFrame:endFrame]; [UIView commitAnimations]; } 用控制动画一个一个落下的效果,在给mapview加annotation的时候加一个延迟: [mapView performSelector:@selector(addAnnotation:) withObject:annotation afterDelay:0.2i];