HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 我如何等待UITableView内置动画完成?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Callback for UITableView animations2个
> UITableView row animation duration and completion callback8个
[self.tableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NsmakeRange(0,1)] withRowAnimation:UITableViewRowAnimationLeft];
 [self.tableView reloadRowsATindexPaths:@[ [NSIndexPath indexPathForItem:1 inSection:1]] withRowAnimation:UITableViewRowAnimationRight];

在上面的代码中,如何在第一行的动画完成后执行第二行?

我试过这个……

[self.tableView beginupdates];
[self.tableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NsmakeRange(0,1)] withRowAnimation:UITableViewRowAnimationLeft];
{
    [self.tableView beginupdates];
    [self.tableView reloadRowsATindexPaths:@[ [NSIndexPath indexPathForItem:1 inSection:1]] withRowAnimation:UITableViewRowAnimationRight];
    [self.tableView endupdates];
}
[self.tableView endupdates];

还有这个…

[self.tableView beginupdates];
{
    [self.tableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NsmakeRange(0,1)] withRowAnimation:UITableViewRowAnimationLeft];
}
[self.tableView endupdates];
[self.tableView beginupdates];
{
    [self.tableView reloadRowsATindexPaths:@[ [NSIndexPath indexPathForItem:1 inSection:1]] withRowAnimation:UITableViewRowAnimationRight];
}

……但无论哪种方式,动画都明显同时发生(当慢动画开启时,动画真的很明显).

解决方法

谢谢Iducool指点我另一个问题.

这工作……

[CAtransaction begin];
[CAtransaction setCompletionBlock:^{
    [self.tableView reloadRowsATindexPaths:@[ [NSIndexPath indexPathForItem:1 inSection:1]] withRowAnimation:UITableViewRowAnimationRight];
}];

[self.tableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NsmakeRange(0,1)] withRowAnimation:UITableViewRowAnimationLeft];

[CAtransaction commit];

我似乎不需要UITableView的beginupdates和endupdates.

大佬总结

以上是大佬教程为你收集整理的ios – 我如何等待UITableView内置动画完成?全部内容,希望文章能够帮你解决ios – 我如何等待UITableView内置动画完成?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。