gpt4 book ai didi

objective-c - iOS - 从 UITableView 中删除行不会设置动画

转载 作者:搜寻专家 更新时间:2023-10-30 19:52:01 26 4
gpt4 key购买 nike

我有一个非常令人沮丧的问题。我有一个带有 UITableView 的应用程序。当我从 TableView 中删除一个单元格时,它会从数据模型中删除,然后我调用以下命令:

-(void)removeItem:(NSIndexPath *)indexPath {
[self.tableView beginUpdates];

[self.tableView deleteRowsAtIndexPaths:@[indexPath]
withRowAnimation:UITableViewRowAnimationRight];
[self.tableView endUpdates];
}

我的问题是,我已经像上面那样尝试过了,而且我已经尝试过不使用 animateWithDuration。我什至尝试过使用 CATransaction,但是不管我怎么做,动画都不会发生。

我的模拟器中有缓慢的动画,当我从列表中删除一个项目时,它会正确删除,但没有动画。在重新加载 TableView 数据之前,它会消失并留下片刻的空白。

我已经在 SO 和 Google 上搜索过了,但似乎找不到答案。有什么想法吗?

这可能与我在调用上述函数之前从数据模型中删除对象有关吗?

编辑:删除了不正确的动画 block

最佳答案

根据 THIS您根本不需要使用 animateWithDuration:animations:

试一试

-(void)removeItem:(NSIndexPath *)indexPath {
[self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:@[indexPath]
withRowAnimation:UITableViewRowAnimationRight];
[self.tableView endUpdates];
}

关于objective-c - iOS - 从 UITableView 中删除行不会设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18336245/

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