ios之animateWithDuration的坑

Posted lee0oo0

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios之animateWithDuration的坑相关的知识,希望对你有一定的参考价值。

[UIView animateWithDuration:<#(NSTimeInterval)#> delay:<#(NSTimeInterval)#> options:<#(UIViewAnimationOptions)#> animations:<#^(void)animations#> completion:<#^(BOOL finished)completion#>

这个函数首先需要animations动画设置是函数调用立即执行,而延迟的时间是执行completion的。  这里有一个坑,就是如果想点击一个正在执行uiview动画的控件,例如是改变x,y的位置,即使我们在网上搜到配置的UIViewAnimationOptionAllowUserInteraction也是不行触发点击,原因就是控件首先执行了animations动画,x,y轴已经改变。


解决办法一:再覆盖一个动画,设置为alpha为0.99,由这个控件触发你的事件

解决办法二(推荐):使用真正的延迟dispatch_after

1 dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
2         [UIView animateWithDuration:0.5 animations:^{
3             // 移动的动画
4         } completion:^(BOOL finished) {
5             // 动画完成的设置
6         }];
7     });

 

以上是关于ios之animateWithDuration的坑的主要内容,如果未能解决你的问题,请参考以下文章

iOS:为啥动画在 CABasicAnimation 下运行良好,但在 animateWithDuration 下看起来很奇怪?

iOS,如何用 animateWithDuration 替换简单的 UIView 图形实例?

如何使用 animateWithDuration:在 iOS 7 上呈现视图控制器时?

ios - UIView.animateWithDuration 的交互式过渡完成块从未在 animateTransition 内部调用

swift animateWithDuration 在 iOS 7 中不起作用

animateWithDuration 在升级到 xcode 4.6 后导致 ios4 上的触摸事件出现问题