我正在使用[UIView animateWithDuration ...]来显示我的应用的每个页面的文本。每个页面都有自己的文本。我正在刷卡以在页面之间导航。我正在使用1秒的溶解效果,以便在显示页面后淡入文本。
问题在于:如果我在1秒钟内滑动(在此期间文本正在淡入),当下一页出现时,动画将完成,2个文本将重叠(前一个和当前)。
我想要实现的解决方案是,如果我碰巧在它发生时滑动,就会中断动画。我无法实现它。 [self.view.layer removeAllAnimations];不适合我。
这是我的动画代码:
- (void) replaceContent: (UITextView *) theCurrentContent withContent: (UITextView *) theReplacementContent {
theReplacementContent.alpha = 0.0;
[self.view addSubview: theReplacementContent];
theReplacementContent.alpha = 0.0;
[UITextView animateWithDuration: 1.0
delay: 0.0
options: UIViewAnimationOptionTransitionCrossDissolve
animations: ^{
theCurrentContent.alpha = 0.0;
theReplacementContent.alpha = 1.0;
}
completion: ^(BOOL finished){
[theCurrentContent removeFromSuperview];
self.currentContent = theReplacementContent;
[self.view bringSubviewToFront:theReplacementContent];
}];
}
你们知道怎么做这个吗?你知道其他任何解决这个问题的方法吗?
答案 0 :(得分:11)
您无法直接取消通过+animateWithDuration...
创建的动画。您想要做的是替换正在运行的动画与即时新动画。
您可以编写以下方法,当您想要显示下一页时调用它:
- (void)showNextPage
{
//skip the running animation, if the animation is already finished, it does nothing
[UIView animateWithDuration: 0.0
delay: 0.0
options: UIViewAnimationOptionTransitionCrossDissolve | UIViewAnimationOptionBeginFromCurrentState
animations: ^{
theCurrentContent.alpha = 1.0;
theReplacementContent.alpha = 0.0;
}
completion: ^(BOOL finished){
theReplacementContent = ... // set the view for you next page
[self replaceContent:theCurrentContent withContent:theReplacementContent];
}];
}
请注意传递给UIViewAnimationOptionBeginFromCurrentState
的其他options:
。它的作用是,它基本上告诉框架拦截受影响属性的任何正在运行的动画并用它替换它们。
通过将duration:
设置为 0.0 ,可以立即设置新值。
在completion:
区块中,您可以创建并设置新内容并调用replaceContent:withContent:
方法。
答案 1 :(得分:2)
因此,另一种可能的解决方案是在动画期间禁用交互。
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
[[UIApplication sharedApplication] endIgnoringInteractionEvents];
答案 2 :(得分:0)
我会声明一个像shouldAllowContentToBeReplaced
这样的旗帜。在动画开始时将其设置为false,在完成动画时将其设置为true。然后在开始动画之前说出if (shouldAllowContentToBeReplaced) {
。