18

我想根据 CGPath 为 CALayer 的位置设置动画,但我想倒着播放。

有什么方法可以使路径向后动画,或反转 CGPath?

4

2 回答 2

31
animation.speed = -1;

?

于 2010-01-15T18:54:48.923 回答
4

这可能不是最好的解决方案,但它对我有用。我告诉动画自动反转,然后在中途开始它。但为了防止它再次动画回来,我需要提前终止它。

- (void) animate {
    CAKeyframeAnimation * pathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];
    pathAnimation.path = path;
    pathAnimation.duration = 15.0;
    pathAnimation.calculationMode = kCAAnimationPaced;
    pathAnimation.timeOffset = pathAnimation.duration;
    pathAnimation.autoreverses = YES;

    NSString * key = @"pathAnimation";
    [animatedView.layer addAnimation:pathAnimation forKey:key];
    [NSTimer scheduledTimerWithTimeInterval:pathAnimation.duration target:self selector:@selector(endAnimation:) userInfo:key repeats:NO];
}

- (void) endAnimation:(NSTimer *)timer {
    [animatedView.layer removeAnimationForKey:timer.userInfo];
}

如果存在更好的方法,我想知道。

于 2010-01-15T18:22:55.633 回答