gpt4 book ai didi

ios - 批量删除剩下的所有行改为向左和向上

转载 作者:行者123 更新时间:2023-11-29 03:07:23 26 4
gpt4 key购买 nike

我想用 UITableViewRowAnimationLeft 删除 tableView 中的所有行,但这些行不会只是离开那里,而是在左上角。继承人的代码:

int aux = [dataSource count]-1;
NSMutableArray *indexPaths = [NSMutableArray array];
for(int i = aux; i>=0; i--)
{

NSIndexPath *anIndexPath = [NSIndexPath indexPathForRow:i inSection:0];
[indexPaths addObject:anIndexPath];

}
[self.view layoutIfNeeded];
[table beginUpdates];
[table deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationLeft];
[dataSource removeAllObjects];
[table endUpdates];

我做错了什么?我只想让卡通动画向左移动。

最佳答案

在您的代码中使用动画 TOP:

[table deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationTop];

改为向左。

[table deleteRowsAtIndexPaths:indexPaths  withRowAnimation:UITableViewRowAnimationLeft];

关于ios - 批量删除剩下的所有行改为向左和向上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22615531/

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