我试图在开始另一项任务之前等待动画完成。我查看了不同的方法,但使用CATransactions似乎是最常用的方法。 不知何故,我的CATransaction Completionblock在动画开始后立即触发,而不是在完成后触发。
这是我的代码:
[CATransaction begin];
[CATransaction setCompletionBlock: ^{
NSLog(@"Animation ends");
}];
NSLog(@"Animation begins");
[tableView setEditing:NO animated:YES];
[CATransaction commit];
在查看控制台时,我得到了这个:
2014-03-17 15:44:12.995 BarTap[89934:70b] Animation begins
2014-03-17 15:44:12.997 BarTap[89934:70b] Animation ends
所以很明显,动画开始后0.002秒,Completionblock开始,但动画肯定需要更长的时间。 谁能帮助我?谢谢!
答案 0 :(得分:0)
动画完成立即触发,因为代码中没有动画任务。 CAAnimation会影响CALayer属性,如果动画属性没有变化,它会立即结束。
试试这个:
[UIView animateWithDuration:timeInterval animations:^{
[tableView setEditing:NO animated:NO];
} completion:^(BOOL finished) {
// Perform tasks after animation completion here
}];