gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 16:55:44 25 4
gpt4 key购买 nike

我试图将 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];

有什么建议吗?谢谢。

最佳答案

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

[rotationAnimation setRemovedOnCompletion:NO];

关于cocoa - 如何将旋转的 CALayer 永久保留在其最终位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4643219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com