gpt4 book ai didi

ios - 使用 UIImages 的 CAKeyframeAnimation 不工作

转载 作者:可可西里 更新时间:2023-11-01 05:03:28 24 4
gpt4 key购买 nike

我是这样设置动画的:

self.testAnimation = [CAKeyframeAnimation animationWithKeyPath:@"TestAnimation"];

[self.animationImagesAsCGImages addObject:( id )[UIImage imageNamed:@"c1.png"].CGImage];
[self.animationImagesAsCGImages addObject:( id )[UIImage imageNamed:@"c2.png"].CGImage];
[self.animationImagesAsCGImages addObject:( id )[UIImage imageNamed:@"c3.png"].CGImage];
[self.animationImagesAsCGImages addObject:( id )[UIImage imageNamed:@"c4.png"].CGImage];

[self.animationKeyframeTimings addObject:[NSNumber numberWithFloat:0.0f]];
[self.animationKeyframeTimings addObject:[NSNumber numberWithFloat:0.25f]];
[self.animationKeyframeTimings addObject:[NSNumber numberWithFloat:0.5f]];
[self.animationKeyframeTimings addObject:[NSNumber numberWithFloat:0.75f]];

self.testAnimation.values = self.animationImagesAsCGImages;
self.testAnimation.keyTimes = self.animationKeyframeTimings;

self.testAnimation.repeatCount = HUGE_VALF;
self.testAnimation.autoreverses = NO;
self.testAnimation.calculationMode = kCAAnimationDiscrete;
self.testAnimation.duration = 2.0f;

然后这样调用它:

[self.layer addAnimation:self.testAnimation forKey:@"TestAnimation"];

但没有任何显示。

我看过其他几篇关于 kCAAnimationDiscrete 需要第一个时间为 0.0f 的 Stack 帖子,如您所见。

请指教?

最佳答案

tl;dr:将动画关键路径更改为 contents,如下所示:

self.testAnimation = [CAKeyframeAnimation animationWithKeyPath:@"contents"];

为什么它不起作用

当您编写 [CAKeyframeAnimation animationWithKeyPath:@"TestAnimation"]; 时,您正在尝试为不存在的层上的 TestAnimation 属性设置动画。因此,对该属性的任何更改都没有视觉效果。

animationWithKeyPath:addAnimation:forKey:

创建动画时keyPath添加key之间的区别并不少见> 动画到一层。

当创建一个新的动画时,您可以指定应该被动画化的属性的 keyPath。如果您创建的动画没有 ​​keyPath,您可以使用动画的 keyPath 属性来设置它。

将动画添加到图层时,您可以指定一个键。此键仅用于使用 CALayer 上的 animationForKey: 方法访问动画。

如何让它发挥作用

由于您要将图像添加到您的值中,我假设您想要在图像之间设置动画,在这种情况下,您应该使用 contents 属性作为关键路径。

来自内容属性的文档:

An object that provides the contents of the layer. Animatable.

...

You can set this property to a CGImageRef to present the contents of the image in place of the layer’s contents.

关于ios - 使用 UIImages 的 CAKeyframeAnimation 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11870054/

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