UITableView:删除行并添加新行后,不能选择新行

时间:2015-05-13 11:13:42

标签: ios objective-c uitableview uiviewcontroller

我有一个相当正常的UIViewController UITableView,我必须先做过数百次。唯一的区别是我的表只能在编辑模式下添加或删除行(不确定我的问题是否与此相关)。

该表是核心数据支持。我使用的是Xcode 6.2,目标是iOS 8.2。问题出现在模拟器和设备上。

问题在于每次删除行,然后添加新行时,新行会按预期显示在表格中但是它们不可选

tableView:didSelectRowAtIndexPath:tableView:willSelectRowAtIndexPath:未被调用。其他行都很好。

这一直困扰着我一天,起初我认为这是一个奇怪的不一致,但是一旦我确定了失败模式,它就是100%一致的。

有趣的是,在关闭应用程序并重新启动后,插入的行是可选的,因此我非常确定问题出在表的内部状态,而不是与数据源有关。

我已经尝试了我能想到的一切,包括在所有事情之后自由地发出[self.tableView reloadData]次来电并明确重新设置self.tableView.allowsSelectionDuringEditing = YES

下面粘贴了一些代码。 (我已经粘贴了我能想到的所有与bug有关的方法。)

- (void)viewDidLoad {
    [super viewDidLoad];
    self.tableView.allowsSelectionDuringEditing = YES;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    NSLog(@"pages count %d", [self pages].count);
    return [self pages].count + (tableView.editing ? 1 : 0);
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    if (indexPath.row < [[self pages] count])
    {
        PageListTableViewCell *cell = (PageListTableViewCell *)[tableView dequeueReusableCellWithIdentifier:kDefaultCellReuseIdentifier forIndexPath:indexPath];
        PageModel *page = [self pages][indexPath.row];
        // Configure the cell...
        cell.displayNameLabel.text = page.displayName;
        //cell.editing = [page.displayName isEqualToString:@""];
        return cell;
    }
    else if (tableView.editing)
    {
        AddTableViewCell *cell = (AddTableViewCell *)[tableView dequeueReusableCellWithIdentifier:kAddCellReuseIdentifier forIndexPath:indexPath];
        cell.textLabel.hidden = YES;
        return cell;
    }
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row < [[self pages] count])
    {
        // ... normal selection behaviour
    }
    else
    {
        // add new row
        [self addPageAtIndexPath:indexPath];
    }
}

- (void)addPageAtIndexPath:(NSIndexPath *)indexPath
{
    [self.tableView beginUpdates];
    // add row in core data
    NSString *pageID = [NSString stringWithFormat:@"page-%ld-%@", indexPath.row, [[NSUUID UUID] UUIDString]];
    PageModel *page = [[PageModelController sharedInstance] addPageWithIdentifier:pageID displayName:@"untitled"];
    NSLog(@"Page %ld added, ID %@", indexPath.row, pageID);

    [self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
    [self.tableView endUpdates];
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        [self.tableView beginUpdates];
        // Delete the row from core data
        PageModel *page = [self pages][indexPath.row];
        [[PageModelController sharedInstance] removePage:page];
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
        [self.tableView endUpdates];
    }
}

1 个答案:

答案 0 :(得分:2)

终于找到了它 - 感谢@Rory McKinnel让我更加关注我的自定义单元格实现。它几乎没有做任何事情,因为我在调试过程中剥离了它的内容,但至关重要的是它仍然覆盖了prepareForReuse并且错过了对super 的调用。哎哟。