UITableViewCell中自定义标签的问题

时间:2011-02-11 09:45:05

标签: iphone objective-c uitableview uilabel

我有UITableViewController。在cellForRowAtIndexPath方法中,我添加了标签的自定义设置:

UILabel *lblMainLabel = [[UILabel alloc]initWithFrame:CGRectMake(50, 9, 150, 25)];
    lblMainLabel.text = c.Name;
    lblMainLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:20];
    lblMainLabel.backgroundColor = [UIColor clearColor];
    lblMainLabel.textColor = [UIColor whiteColor];
    [cell.contentView addSubview:lblMainLabel];
    [lblMainLabel release];

但是当我在表格中向上或向下滚动时,它总是在我之前的标签上添加此标签?

2 个答案:

答案 0 :(得分:15)

创建单元格时,应该只创建一次UILabel。

您的代码应如下所示:

if (cell == nil) {
   cell = ...
   UILabel *lblMainLabel = [[UILabel alloc]initWithFrame:CGRectMake(50, 9, 150, 25)];
   lblMainLabel.tag = 42;
   lblMainLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:20];
   lblMainLabel.backgroundColor = [UIColor clearColor];
   lblMainLabel.textColor = [UIColor whiteColor];
   [cell.contentView addSubview:lblMainLabel];
   [lblMainLabel release];
}
UILabel *lblMainLabel = [cell viewWithTag:42];
lblMainLabel.text = c.Name;

答案 1 :(得分:1)

是的fluchtpunkt,你是对的。 每次tableview滚动时都会触发cellForRowAtIndexPath,它会重新加载数据。

if (cell == nil)
{

}
一旦单元格分配,

将被触发。其他记忆也增加了。