gpt4 book ai didi

iphone - [self.tableView endUpdates] 结束后调用方法

转载 作者:行者123 更新时间:2023-12-03 19:28:35 24 4
gpt4 key购买 nike

我想在动画结束后添加 slider 按钮,但这不起作用,它会在删除该部分的动画时添加按钮。

    [coursesTable beginUpdates];
[coursesTable deleteSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationTop];
[coursesTable endUpdates];
[self.view addSubview:sliderButton];

我是否可以调用一个方法来在动画结束时为我执行此操作?

最佳答案

我相信将表格更新包装在 animateWithDuration 中会起作用:

[UIView animateWithDuration:0.0 animations:^{
[coursesTable beginUpdates];

[coursesTable endUpdates];
} completion:^(BOOL finished) {
// Code to run when table updates are complete.
}];

我在 Stack Overflow 上发现的其他建议方法对我来说不起作用。

我曾经使用过这种技术,并对其进行了足够的测试,以验证在调用表的 endUpdates 方法后是否调用了完成 block ,但重写了我的代码,因此在完全验证了该技术之前我不再需要它了动画实际上已经完成了。

关于iphone - [self.tableView endUpdates] 结束后调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9597962/

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