gpt4 book ai didi

ios - 使用 commitEditingStyle 时删除按钮仍然显示(cf gif)

转载 作者:行者123 更新时间:2023-11-29 12:39:27 26 4
gpt4 key购买 nike

我正在尝试使用滑动手势删除 UITableviewCell

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath 

{
return YES;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

if (editingStyle == UITableViewCellEditingStyleDelete) {

[_commentsData removeObjectAtIndex:indexPath.row];
_NBComment--;

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
withRowAnimation:UITableViewRowAnimationFade];

}

}

结果是这样的:

enter image description here

行删除后删除按钮仍然显示。

你有什么想法可以让行删除更顺畅吗?

提前致谢

最佳答案

不要问我为什么,但这段代码有效:

[_commentsData removeObjectAtIndex:indexPath.row];
_NBComment--;
[tableView beginUpdates];
[tableView setEditing:NO animated:NO];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
[tableView endUpdates];

关于ios - 使用 commitEditingStyle 时删除按钮仍然显示(cf gif),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25381561/

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