我有一个包含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
像素向右移动。但是,如果我再次点击屏幕,则动画根本不起作用;没有观点移动。我通过断点逐步完成此代码,并验证此动画是否已添加到图层中。只是没有应用动画或类似的东西。有办法解决这个问题吗?
答案 0 :(得分:0)
不太确定,但您确定第二个动画与第一个动画之后的位置不同吗?