gpt4 book ai didi

iphone - UITableView beginUpdates/endUpdates 回调

转载 作者:可可西里 更新时间:2023-11-01 03:04:16 24 4
gpt4 key购买 nike

我正在使用 beginUpdates/endUpdates block 对 tableView 进行更改。在整个过程中,我需要更新投影,以便它反射(reflect) tableView 的当前构图。

我尝试为 tableView 的 contentSize 设置 KVO,但它只在 endUpdates 上调用,一旦动画结束。我想要的是每次 contentSize 更改时调用它(即使它只有一个像素)。有什么办法可以实现吗?

最佳答案

这个呢?

[CATransaction begin];

[CATransaction setCompletionBlock:^{
// animation has finished
}];

[tableView beginUpdates];
// do some work
[tableView endUpdates];

[CATransaction commit];

关于iphone - UITableView beginUpdates/endUpdates 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8794501/

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