2

在我的 uitableview 我有两个部分

首先是从核心数据中获取

其他通过存储在 NSMutableArray(otherFriends) 中的文本字段添加

这是我的代码

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    if([otherFriends count]>0)
    {
        return 2;
    }
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)sectionIndex
{
    if(otherFriends == 0)
    {
        return [[[[self fetchedResultsController]sections]objectAtIndex:0]numberOfObjects];
    }
    return [otherFriends count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"newGroupCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.font = [UIFont fontWithName:@"Helvetica-Light" size:20.0];
    cell.textLabel.backgroundColor = [UIColor colorWithWhite:1.0f alpha:0.0f];

    if(indexPath.section == 0)
    {
        user = [[self fetchedResultsController] objectAtIndexPath:indexPath];

        cell.textLabel.text = user.name;
        cell.detailTextLabel.text = user.primaryResource.status;

        [cell.imageView setFrame:CGRectMake(0, 0, 50, 50)];
        [cell.imageView.layer setMasksToBounds:YES];

        if (user.photo != nil)
        {
            cell.imageView.image = user.photo;
        }
        else
        {
            cell.imageView.image = [UIImage imageNamed:@"defaultPerson"];
        }
    }
    else
    {
        cell.textLabel.text = [otherFriends objectAtIndex:indexPath.row];
        cell.imageView.image = [UIImage imageNamed:@"defaultPerson"];
    }

    return cell;
}

第一部分也有字幕,但第二部分单元格没有字幕

当我添加新朋友时,它可以正常工作,直到所有行都可见,但是当添加新朋友并且该行不可见并且要查看该行我必须滚动时,该行显示第 0 节中第一行的副标题(非常第一个单元格)及其在第 1 节第三行中的重复。只有副标题重复,但正文没有。

几个小时以来,我试图弄清楚这一点,但没有运气。

4

2 回答 2

2

这是因为在您的else分支中您没有设置cell.detailTextLabel.text.

当一个单元格被回收时,旧的 detailTextLabel 会保留在那里。您需要在条件的两个分支中设置单元格的所有属性,以保证它已被回收。

if(indexPath.section == 0)
{
    user = [[self fetchedResultsController] objectAtIndexPath:indexPath];

    cell.textLabel.text = user.name;
    cell.detailTextLabel.text = user.primaryResource.status;

    [cell.imageView setFrame:CGRectMake(0, 0, 50, 50)];
    [cell.imageView.layer setMasksToBounds:YES];

    if (user.photo != nil)
    {
        cell.imageView.image = user.photo;
    }
    else
    {
        cell.imageView.image = [UIImage imageNamed:@"defaultPerson"];
    }
}
else
{
    cell.textLabel.text = [otherFriends objectAtIndex:indexPath.row];
    cell.imageView.image = [UIImage imageNamed:@"defaultPerson"];
    // ADDED
    cell.detailTextLabel.text = @"";
    // You may also need to adjust the frame of the cell.imageView
    // because it could have been recycled.
}
于 2013-01-18T15:51:38.317 回答
0

细胞被重复使用。由于您对两个部分使用相同的单元格,因此您必须确保在所有条件下设置/重置同一组单元格属性。

问题是当单元格用于第 1 节时,您不会重置detailTextLabel. 在您的else块中,添加:

cell.detailTextLabel.text = nil;

这可确保在所有情况下,您都在为重用单元格设置textLabeldetailTextLabelimageView属性。

于 2013-01-18T15:51:44.597 回答