如何取消基于UIView块的动画?
我已经搜索了大量SO内容和Apple参考资料,但仍然无法解决我的问题。 是)我有的: 连接了2UIImageView秒和2UIButton秒的屏幕 2种动画: 放大然后缩小每个图像,一个接一个,仅一次 viewDidLoad 当按下一个按钮时(一个自定义按钮隐藏在每个按钮的“内部” UIImageView),它会触发适当的动画(UIImageView仅一个动画,而不是两个动画)(先放大然后缩小)。 当我为iOS4 +写作时,我被告知要使用基于块的动画! 我需要的: 如何取消正在播放的动画?除了最后一个我已经设法取消了...:/ 这是我的代码段: [UIImageView animateWithDuration:2.0 delay:0.1 options:UIViewAnimationOptionAllowUserInteraction animations:^{ isAnimating = YES; self.bigLetter.transform = CGAffineTransformScale(self.bigLetter.transform, 2.0, 2.0); } completion:^(BOOL finished){ if(! finished) return; [UIImageView animateWithDuration:2.0 delay:0.0 options:UIViewAnimationOptionAllowUserInteraction animations:^{ self.bigLetter.transform = CGAffineTransformScale(self.bigLetter.transform, 0.5, 0.5); } completion:^(BOOL finished){ if(! finished) return; [UIImageView animateWithDuration:2.0 …