如何将旋转的 CALayer 永久保留在其最终位置?

发布于 2024-10-11 18:43:39 字数 536 浏览 7 评论 0原文

我试图将 CALayer 旋转到特定角度,但是,一旦动画完成,图层就会跳回其原始位置。如何正确旋转图层以使其保持在最终目的地?

这是我正在使用的代码

CABasicAnimation *rotationAnimation =[CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; //Rotate about z-axis
[rotationAnimation setFromValue:[NSNumber numberWithFloat:fromDegree]];
[rotationAnimation setToValue:[NSNumber numberWithFloat:toDegree]];
[rotationAnimation setDuration:0.2];
[rotationAnimation setRemovedOnCompletion:YES];
[rotationAnimation setFillMode:kCAFillModeForwards];

有什么建议吗?谢谢。

I am trying to rotate a CALayer to a specific angle however, once the animation is done, the layer jumps back to its original position. How would I rotate the layer properly so that it stays at its final destination?

Here is the code that I am using

CABasicAnimation *rotationAnimation =[CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; //Rotate about z-axis
[rotationAnimation setFromValue:[NSNumber numberWithFloat:fromDegree]];
[rotationAnimation setToValue:[NSNumber numberWithFloat:toDegree]];
[rotationAnimation setDuration:0.2];
[rotationAnimation setRemovedOnCompletion:YES];
[rotationAnimation setFillMode:kCAFillModeForwards];

Any suggestions? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

燕归巢 2024-10-18 18:43:39

好吧,我通过将removeOnCompletion 设置为NO 来修复它。

[rotationAnimation setRemovedOnCompletion:NO];

Ok I fixed it by setting removeOnCompletion to NO.

[rotationAnimation setRemovedOnCompletion:NO];
网名女生简单气质 2024-10-18 18:43:39

您正在添加动画,但没有修改实际的基础属性。创建动画后,只需设置图层的 transform 属性即可包含相同的最终结果。

You're adding an animation, but you aren't modifying the actual underlying property. After you create the animation, just set the layer's transform property to contain the same final result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文