gpt4 book ai didi

objective-c - 添加/删除带有动画的 UITableViewCell?

转载 作者:IT老高 更新时间:2023-10-28 11:31:41 27 4
gpt4 key购买 nike

我知道这听起来可能是个愚蠢的问题,但我到处都看过。我该怎么做?

我知道如何使用 swype-to-delete 方法执行此操作,但我如何在该功能之外执行此操作?

请发布一些代码示例。

谢谢!
库尔顿

最佳答案

[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:insertIndexPaths withRowAnimation:UITableViewRowAnimationFade];
[self.tableView deleteRowsAtIndexPaths:deleteIndexPaths withRowAnimation:UITableViewRowAnimationFade];
[self.tableView endUpdates];

insertIndexPaths 是要插入到表中的 NSIndexPaths 数组。

deleteIndexPaths 是要从表中删除的 NSIndexPaths 数组。

索引路径的示例数组格式:

NSArray *insertIndexPaths = [[NSArray alloc] initWithObjects:
[NSIndexPath indexPathForRow:0 inSection:0],
[NSIndexPath indexPathForRow:1 inSection:0],
[NSIndexPath indexPathForRow:2 inSection:0],
nil];

关于objective-c - 添加/删除带有动画的 UITableViewCell?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5560602/

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