弹簧动画效果(系统自带方法)
Posted 偶阵雨ss33
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了弹簧动画效果(系统自带方法)相关的知识,希望对你有一定的参考价值。
/**
* 动画效果
*/
[UIView animateWithDuration:0.5 // 动画时长
delay:0.0 // 动画延迟
usingSpringWithDamping:0.58 // 阻力
initialSpringVelocity:3.9 // 动力
options:UIViewAnimationOptionCurveLinear // 动画过渡效果
animations:^{
self.communityItem.center = CGPointMake(itemX + (ItemW)/2.0, ItemFinalY);
self.integralMallItem.center = CGPointMake(JYEScreenWidth - itemX - itemW/2.0, ItemFinalY);
self.shareCaremaItem.center = CGPointMake((JYEScreenWidth)/2.0, ItemFinalY);
} completion:^(BOOL finished) {
}];
以上是关于弹簧动画效果(系统自带方法)的主要内容,如果未能解决你的问题,请参考以下文章