尝试为同一索引路径出列多个单元格,这是不允许的

时间:2017-12-09 02:28:19

标签: ios objective-c uitableview

我有一个非常简单的UITableView,从iOS6开始就运行得很好....我最近尝试从iOS10-iOS11开始新的构建,现在我得到了我以前从未见过的新的NSInternalConsistency异常,它使用新的iOS版本从左侧字段中出来....

  

***由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'尝试出列   多个单元格用于相同的索引路径,这是不允许的。如果你   真的需要比表视图请求更多的单元格出列,   使用-dequeueReusableCellWithIdentifier:方法(没有索引   路径)。单元标识符:WorkOrderCell,索引路径:{length = 2,path = 0 - 0}'

我已经阅读了很多教程,我觉得这个代码没有什么特别的错误。事实上,正常的网格加载工作正常,这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"WorkOrderCell" forIndexPath:indexPath];



    // Configure the cell...  do some work, return it



    return cell;
}

是否有其他人遇到过这个问题,你做了什么来解决它?

我应该更具体一点,正常的UITableView确实加载得很好,这个特定的问题是我有一个SearchBar,当用户输入搜索时,我正在过滤结果并显示结果网格:

//Start Search/Filter Code
- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{
    NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"Job contains[cd] %@ or Address contains[cd] %@ or WorkOrderId contains[cd] %@ or Supervisor contains[cd] %@", searchText, searchText, searchText, searchText];
    self.filteredWorkOrders = [self.workOrders filteredArrayUsingPredicate:resultPredicate];
}


-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
    [self filterContentForSearchText:searchString
                               scope:[[self.searchDisplayController.searchBar scopeButtonTitles]
                                      objectAtIndex:[self.searchDisplayController.searchBar
                                                     selectedScopeButtonIndex]]];

    return YES;
}

过滤器代码本身工作正常,它只是触发UITableView委托来触发,它开始出列单元格(在搜索结果网格中应该是空的?)

无论如何,我可以使用这个帮助.....

5 个答案:

答案 0 :(得分:5)

请勿在{{1​​}}方法(或任何其他数据源和委托方法)中使用self.tableView。使用cellForRowAtIndexPath参数。

当您的数据源和委托方法用于多个表视图时,这非常重要。

答案 1 :(得分:4)

另一种可能性是您可能在同一个tableView中不小心使用dequeueReusableCell方法。

例如,您可能也错误地在didSelectRowAtdidEndDisplaying cell中使用了它。

答案 2 :(得分:3)

在我的情况下,由于另一个并行进程,我正在重新加载表时调用“cellForRowAt indexPath”。然后我实现了flag并延迟了“cellForRowAt indexPath”,而“cellForRowAt indexPath”方法正在工作。所以它不会为同一个单元并行加载

答案 3 :(得分:0)

如果您在一个表中使用多个单元格。以这种方式出队:

  func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {



            if cellName == "test1" {

              let cell = tableView.dequeueReusableCell(withIdentifier: "test1", for: indexPath)

return cell
             }else if  cellName == "test2" {

                              let cell = tableView.dequeueReusableCell(withIdentifier: "test2", for: indexPath)

return cell

                }

答案 4 :(得分:0)

正如警告信息所说,只需使用

dequeueReusableCell(withIdentifier: "YourIdentifierCellHere")

没有

for: indexPath