ios – UITableViewCell删除按钮不会消失

前端之家收集整理的这篇文章主要介绍了ios – UITableViewCell删除按钮不会消失前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用UISegmentedControl在两个数据集之间切换UITableView(想想收藏夹和最近的收藏夹).点击分段控件会使用不同的数据集重新加载tableview.
[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:anim];

用户滑动以删除行时,它可以正常工作.然而,当用户通过分段控件切换数据集时,DELETED CELL会在不改变其外观的情况下被重复使用(即红色的“DELETE”按钮仍然存在且行内容无处可见).这似乎是大多数人看到的相反问题,即删除按钮没有出现.

这是删除代码

- (UITableViewCellEditingStyle) tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellEditingStyleDelete;
}

- (void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        if ([self.current isEqualTo:self.favorites])
        {
            Favorite *fav = self.favorites[indexPath.row];

            NSMutableArray *mut = [self.favorites mutableCopy];
            [mut removeObjectAtIndex:indexPath.row];
            self.favorites = mut;
            self.current = self.favorites;
            [self.tableView deleteRowsAtIndexPaths:@[indexPath]
                                  withRowAnimation:UITableViewRowAnimationAutomatic];
        }
    }

}

tableview设置为single select,self.tableView.editing == NO.我也尝试使用[self.tableView reloadData]并删除/插入从一个数据集到下一个数据集的行差异.两者都不起作用.

我正在使用的UITableViewCell不提供backgroundView或selectedBackgroundView

[编辑]

分段控制值已更改:

- (IBAction)modeChanged:(id)sender
{
    if (self.listMode.selectedSegmentIndex == 1)
    {
         self.current = self.favorites;
    }
    else 
    {
        self.current = self.recents;
    }
    // Tryin this:
    [self.tableView reloadData];
    // Tried this:
    // [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];
}

// Only 1 Section per table
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
{
    return [self.current count];
}

解决方法

哦,因为…的爱

我没有打电话给[super prepareForReuse];在我的UITableViewCell子类中.

啊.

原文链接:https://www.f2er.com/iOS/333100.html

猜你在找的iOS相关文章