1

我有一个表格视图,里面有一个自定义单元格,里面有另一个表格视图。在这种cellForRowAtIndexPath方法中,我收到此错误no index path for table cell being reused并且cell gets disappeared after scroll. 这是 indexpath 问题还是 cellidentifier 问题?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"CustomCell";
CustomCell *customCell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];     
//    __block CustomCell *customCell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
//    if (customCell == nil)
//    {
//        customCell = [[[CustomCell alloc] initWithFrame:CGRectMake(0, 0, 320, 416)] autorelease];
//   
// }
[customCell prepareCell:arrCategory];
return customCell;
}
-(void)prepareCell:(NSArray *)arrCategory
{
      if(mutArr != nil) {
        [mutArr removeAllObjects];
        mutArr = nil;
        [mutArr release];
 }
 mutArr = [[NSMutableArray alloc] arrCategory];
 [tblCusom reloadData];
}

我经历了这个 SO ques,但我没有使用这个问题中使用的方法。那么我无法追踪它可能是什么问题。谷歌搜索后也没有发现同样的问题

4

3 回答 3

0

如果我理解正确,您需要检查委托的调用方法的 tableView(mainTableView 或 tblCustom)。像这样的东西:

   - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        if (tableView == tblCusom)
        {
           __block CustomCell *categoryCell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
            if (customCell == nil)
            {
                customCell = [[[CustomCell alloc] initWithFrame:CGRectMake(0, 0, 320, 416)] autorelease];

            }

            [customCell prepareCell:arrCategory];
        }
        else if (tableView == self.myMainTableView)
        {
            static NSString *CellIdentifier = @"CustomCell";
            CustomCell *categoryCell = [tableView   dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
            return categoryCell;
        }

    return customCell;
}

希望它可以帮助你。

于 2013-06-17T05:11:51.087 回答
0

我也长期面临这个错误并找到了解决方案:-

[tblCusom reloadData];

将其替换为

[self performSelector:@selector(tableReloadMethod) withObject:nil afterDelay:0.5];

添加此方法:-

-(void)tableReloadMethod
{
    [tblCusom reloadData];

}

希望它可以帮助你。

于 2013-06-17T05:53:25.690 回答
0
    CustomCell *categoryCell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

您正在创建一个单元格实例但没有在任何地方使用它,并且该单元格是从重用标识符方法返回的。所以实际上在您的代码中没有使用这一行

于 2013-06-17T06:02:20.687 回答