标签: ios core-animation
我目前正在动画从左到右的视图。但是,我需要在飞行途中停止动画。为此,我使用:
CGRect frame = [movingView layer] presentationLayer] frame]; [movingView.layer removeAllAnimations]; movingView.frame = frame;
不幸的是,执行此代码时,视图似乎略微向左跳转。如何在准确的位置停止动画?