0

我在表格的视图单元格中使用 FontLabel。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if(cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    FontLabel *author_name = [[FontLabel alloc] initWithFrame:CGRectMake(58, 10, 217, 16) fontName:@"MyriadPro-Bold" pointSize:12.0f];
    author_name.numberOfLines = 1;
    author_name.text = [dummyArray objectAtIndex:indexPath.row];
    author_name.textColor = [UIColor colorWithRed:0.580 green:0.776 blue:0.329 alpha:1.000];
    author_name.backgroundColor = [UIColor clearColor];

    [cell addSubview:author_name];
    return cell;

}

但是标签被加载了多次。我可以看到它越来越大胆。我该如何解决?

4

1 回答 1

0

当您调用时addSubview,它不会删除旧视图。请记住,单元格被重复使用,因此您在上次迭代中添加的视图仍然存在。

您应该改为子类UITableViewCell,以便您可以添加 aUILabel到它。

编辑:

或者你可以做

author_name.tag = 10;

接着

FontLabel *author_name = (FontLabel *)[cell.contentView viewWithTag:10];

当你想找回它。

于 2012-08-07T21:16:47.740 回答