gpt4 book ai didi

objective-c - 如何检测动画何时在 UITableViewCell 取消选择行上完成

转载 作者:太空狗 更新时间:2023-10-30 03:41:55 25 4
gpt4 key购买 nike

选择一个 UITableViewCell 后我调用

[tableView deselectRowAtIndexPath:indexPath animated:YES]

tableView:didSelectRowAtIndexPath:

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

最佳答案

[CATransaction begin];

[tableView beginUpdates];

[CATransaction setCompletionBlock: ^{

NSLog(@"Completion code here");

}];

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

[CATransaction commit];

关于objective-c - 如何检测动画何时在 UITableViewCell 取消选择行上完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19307777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com