[UIView animateWithDuration:1.0 // 动画时长
delay:0.0// 动画延迟
usingSpringWithDamping:0.5 // 类似弹簧振动效果 0~1 数值越小震动越明显
initialSpringVelocity:5.0 // 初始速度
options:UIViewAnimationOptionCurveEaseInOut // 动画过渡效果
animations:^{
}completion:^(BOOLfinished) {
}];
[UIView animateWithDuration:1.0 // 动画时长
delay:0.0// 动画延迟
usingSpringWithDamping:0.5 // 类似弹簧振动效果 0~1 数值越小震动越明显
initialSpringVelocity:5.0 // 初始速度
options:UIViewAnimationOptionCurveEaseInOut // 动画过渡效果
animations:^{
}completion:^(BOOLfinished) {
}];