CABasicAnimation - 未调用 animationDidStop
Posted
技术标签:
【中文标题】CABasicAnimation - 未调用 animationDidStop【英文标题】:CABasicAnimation - animationDidStop not called 【发布时间】:2011-06-22 20:26:17 【问题描述】:我正在制作 CABasicAnimation,但问题是 animationDidStop 委托方法没有被调用。我不知道为什么,但希望有人知道。
这是我的动画:
CABasicAnimation *theAnimation;
theAnimation = [CABasicAnimation animationWithKeyPath: @"transform.translation.x"];
theAnimation.duration = 54;
//theAnimation.repeatCount = 6;
theAnimation.autoreverses = YES;
theAnimation.removedOnCompletion = YES;
theAnimation.fromValue = [NSNumber numberWithFloat: (self.myImageView.frame.size.height / 5) + (self.view.frame.size.height - self.myImageView.center.x)];
theAnimation.toValue = [NSNumber numberWithFloat: 6.0 - (self.myImageView.frame.origin.y + self.myImageView.frame.size.height)];
//[self.myImageView.layer addAnimation:theAnimation forKey: @"animateLayer"];
[theAnimation setValue:@"Animation1" forKey:@"animateLayer"];
[[self.myImageView layer] addAnimation:theAnimation forKey:nil];
这也是我的 animationDidStop 方法:
- (void)animationDidStop:(CABasicAnimation *)theAnimation finished:(BOOL)flag
NSString* value = [theAnimation valueForKey:@"animateLayer"];
if ([value isEqualToString:@"Animation1"])
[self themethod];
return;
if ([value isEqualToString:@"Animation2"])
[self themethod];
return;
有人知道为什么会这样吗?
【问题讨论】:
【参考方案1】:您需要设置委托来调用animationDidStop
。
theAnimation.delegate = class (self)
【讨论】:
请注意CAAnimation
的delegate
很强大,因此您可能需要将其设置为nil
以避免保留循环!
谢谢,但在 2011 年“强大”可能还没有实现...... :)
我知道,这是为了其他人会遇到这个,因为我很难学会它,并且在互联网上的任何地方都没有看到它:(以上是关于CABasicAnimation - 未调用 animationDidStop的主要内容,如果未能解决你的问题,请参考以下文章
Swift - CABasicAnimation 完成时更新 UIButton
Objective-C - CABasicAnimation 在动画后应用更改?
如何正确设置 PhpStorm? Сan't run PHPUnit on Laravel 8 on Windows 10. 调用未定义函数 Tests\Unit\is_id_term()