为什么这个动画只能使用一次?

时间:2013-04-24 00:51:37

标签: ios objective-c core-animation cabasicanimation

我有一个包含UITapGestureRecognizer的UIView,它触发一个名为handleLeftTap的方法。

-(void)handleLeftTap {

    self.player.direction = LEFT;

    if(!self.isAnimating && self.toTile.isWalkable) {
        for(UIView *currentView in self.subviews) {
            CABasicAnimation *moveAnimation = [CABasicAnimation animationWithKeyPath:@"position"];
            [moveAnimation setDuration:MOVE_ANIMATION_DURATION];
            [moveAnimation setDelegate:self];
            [moveAnimation setRemovedOnCompletion:NO];
            [moveAnimation setFillMode:kCAFillModeForwards];
            moveAnimation.toValue = [NSValue valueWithCGPoint:CGPointMake(currentView.center.x+TILE_WIDTH, currentView.center.y)];
            [currentView.layer addAnimation:moveAnimation forKey:nil];
        }
        NSLog(@"animated\n");
    }
}

当我第一次点击屏幕时,这个动画效果很好;每个子视图都按TILE_WIDTH像素向右移动。但是,如果我再次点击屏幕,则动画根本不起作用;没有观点移动。我通过断点逐步完成此代码,并验证此动画是否已添加到图层中。只是没有应用动画或类似的东西。有办法解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

不太确定,但您确定第二个动画与第一个动画之后的位置不同吗?