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

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

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

最佳答案

你可以在这里找到答案:

How to detect that animation has ended on UITableView beginUpdates/endUpdates?

希望能帮助到你!

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

10-12 21:27