6

选择 UITableViewCell 后,我调用

[tableView deselectRowAtIndexPath:indexPath animated:YES]

里面tableView:didSelectRowAtIndexPath:

这将显示取消选择动画。我想知道是否有任何方法可以检测此动画何时完成。

4

1 回答 1

9
[CATransaction begin];

[tableView beginUpdates];

[CATransaction setCompletionBlock: ^{

    NSLog(@"Completion code here");

}];

[tableView deselectRowAtIndexPath:indexPath animated:YES];
[tableView endUpdates];

[CATransaction commit];
于 2013-10-22T13:05:09.523 回答