如何在facebook / pop中制作旋转动画?

时间:2017-05-31 06:06:53

标签: ios swift facebook-pop

我一直在寻找整个互联网,关于如何使用facebook POP动画制作旋转动画。

没有运气,kPOPLayerRotation只支持“Flip X / Y”动画,但不支持“Spin”(就像前端CSS中的rotate属性一样),有人知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

目标C

POPSpringAnimation *rotateAnimation = [POPSpringAnimation animation];
rotateAnimation.property = [POPAnimatableProperty propertyWithName: kPOPLayerRotation];
rotateAnimation.toValue= @(M_PI/4); 

夫特

let rotateAnimation = POPSpringAnimation(propertyName: kPOPLayerRotation)
rotateAnimation?.toValue = Double.pi / 4