如下:
/*
*animateWithDuration:动画持续时长
*delay:动画延迟
*usingSpringWithDamping:弹簧效果,0~1,数值越大,效果越不明显
*initialSpringVelocity:初始速度
*options:动画过渡效果
*/
[UIView animateWithDuration:0.25f
delay:0
usingSpringWithDamping:0.5f
initialSpringVelocity:1.0f
options:UIViewAnimationOptionPreferredFramesPerSecondDefault
animations:^{
//动画执行操作
}
completion:^(BOOL finished) {
//动画完成后执行的操作
}];