UITableViewCell删除按钮不会消失

时间:2013-11-30 20:09:00

标签: ios uitableview ios7

我正在使用UISegmentedControl在两个数据集之间切换UITableView(想想收藏夹和最新数据集)。点击分段控件会使用不同的数据集重新加载tableview。

[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:anim];

当用户滑动以删除行时,它可以正常工作。 HOWEVER 当用户通过分段控件切换数据集时,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设置为单选,self.tableView.editing == NO。我还尝试使用[self.tableView reloadData]并删除/插入从一个数据集到下一个数据集的行差异。两者都不起作用。

UITableViewCell我正在使用耗材backgroundViewselectedBackgroundView


[编辑]

分段控制值已更改:

- (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];
}

2 个答案:

答案 0 :(得分:21)

哦,为了爱...

我没有在我的[super prepareForReuse];子类中调用UITableViewCell

UGH。

答案 1 :(得分:1)

我遇到了同样的事情:要“删除”一个自定义的UITableViewCell,我将它从表中删除并将其放到另一个列表中,然后用户可以在模式视图中显示它们后悔并想要放置回来了。在iOS7(但不是iOS6)中,尽管调用了setEditing:NO等等,所以移动的单元格仍有大的丑陋“DELETE”按钮。 (此外,即使检查调试器中的单元格显示所有子窗格仍然存在,但根本没有绘制其余的单元格内容。)

与上面的Stephen不同,我没有覆盖prepareForReuse,所以这不是问题。但它是相关的:在我的情况下,单元格不是使用重用标识符创建的:

self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];

根据文档,“如果单元格对象没有关联的重用标识符,则不会调用此方法。”但显然,至少在iOS7中,应该

因此,在我的情况下,解决方案是在将每个单元格加载到新表格中时,在每个单元格上显式调用此[cell prepareForReuse]。