我一直在寻找整个互联网,关于如何使用facebook POP动画制作旋转动画。
没有运气,kPOPLayerRotation只支持“Flip X / Y”动画,但不支持“Spin”(就像前端CSS中的rotate属性一样),有人知道怎么做吗?
答案 0 :(得分:0)
试试这个:
POPSpringAnimation *rotateAnimation = [POPSpringAnimation animation];
rotateAnimation.property = [POPAnimatableProperty propertyWithName: kPOPLayerRotation];
rotateAnimation.toValue= @(M_PI/4);
let rotateAnimation = POPSpringAnimation(propertyName: kPOPLayerRotation)
rotateAnimation?.toValue = Double.pi / 4