gpt4 book ai didi

iphone - CABasicAnimation 保持恒定速度

转载 作者:行者123 更新时间:2023-11-29 13:30:42 29 4
gpt4 key购买 nike

我正在尝试使用 CABasicAnimation 创建一个简单的动画,它将始终保持恒定的速度,即使动画必须移动的距离永远不会相同。到目前为止,这是我的代码,它正在滚动一个大小总是不同的标签,但还不能保持恒定的速度。非常感谢您的帮助。

CABasicAnimation *theAnimation;
theAnimation = [CABasicAnimation animationWithKeyPath:@"transform.translation.x"];
theAnimation.speed = 1.0f;

NSNumber *fromValue = [NSNumber numberWithFloat:self.mainLabel.frame.origin.x];
NSNumber *toValue = [NSNumber numberWithFloat:-self.mainLabel.frame.size.width - self.view.frame.size.height];
theAnimation.fromValue = fromValue;
theAnimation.toValue = toValue;
//theAnimation.duration = toValue.floatValue - fromValue.floatValue;//Not right.
theAnimation.repeatCount = 999;
theAnimation.autoreverses = NO;
[mainLabel.layer addAnimation:theAnimation forKey:@"animateLayer"];

最佳答案

你试过添加吗:

 theAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];

在例子之后

 theAnimation.speed = 1.0f;   

?

此函数设置动画的线速度。

关于iphone - CABasicAnimation 保持恒定速度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11981875/

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