有没有办法在完成-[UITableView moveRowAtIndexPath:toIndexPath]
期间执行的动画时执行方法?
即,我希望表视图动画将单元格移动到新的indexPath,然后一旦完成动画,就应该执行一个方法。
答案 0 :(得分:0)
我遇到了这个,答案是下降到CATransaction
:
[CATransaction begin];
[CATransaction setCompletionBlock:^{
// Your completion code here
];
[table moveRow…
[CATransaction commit];