0

我试图在一个单元格中实现一个 UILabel ,当我上下滚动表格几次时,我得到的是一些值的重叠。我使用 ARC,所以当我想要的时候没有发布,所以我的问题是:将 Label 实现到 tableView 单元格的正确方法是什么?

这是它的外观

- (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];


    }
     // Configure the cell...  

    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    cell.textLabel.textColor = [UIColor colorWithRed:0.6 green:0.6 blue:0.6 alpha:1];
    cell.textLabel.highlightedTextColor = [UIColor colorWithRed:0.753 green:0.651 blue:0.1569 alpha:1]; 


    UILabel *cellLabelS1 = [[UILabel alloc] initWithFrame:CGRectMake(250, 0, cell.frame.size.width, cell.frame.size.height)];
    cellLabelS1.backgroundColor = [UIColor clearColor];
    cellLabelS1.font = [UIFont boldSystemFontOfSize:16];
    [cellLabelS1 setTextColor:[UIColor whiteColor]];


    [cellLabelS1 setText:temperatureString];
    temperatureString = nil;
    [cell addSubview:cellLabelS1];
    [[cell imageView]setImage:[UIImage imageNamed:imageFromCodeDay1]];
    [[cell textLabel]setText:cityString];

    return cell;

}

4

3 回答 3

2

仅当您没有标签时,才应向单元格添加标签。如果您在第二遍重复使用单元格,则再次添加它。所以我的建议是为标签设置一个标签,并尝试查看单元格 contentView 是否已经是标签。如果没有创建并添加它。

            UILabel *myLabel = (UILabel *)[cell.contentView viewWithTag:2002];
            if(!myLabel){
                myLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 22)];
                myLabel.tag = 2002;
                [cell.contentView addSubview:myLabel];
            }
             myLabel.text = @"my new text";
于 2012-06-26T14:32:09.043 回答
1
- (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];

        UILabel *cellLabelS1 = [[UILabel alloc] initWithFrame:CGRectMake(250, 0,cell.frame.size.width, cell.frame.size.height)];
cellLabelS1.backgroundColor = [UIColor clearColor];
cellLabelS1.tag = 200; 
cellLabelS1.font = [UIFont boldSystemFontOfSize:16];
[cellLabelS1 setTextColor:[UIColor whiteColor]];
[cell addSubview:cellLabelS1];
}
 // Configure the cell...  

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.textColor = [UIColor colorWithRed:0.6 green:0.6 blue:0.6 alpha:1];
cell.textLabel.highlightedTextColor = [UIColor colorWithRed:0.753 green:0.651 blue:0.1569 alpha:1]; 

UILabel *cellLabelS1 = (UILabel*)[cell viewWithTag:200];
[cellLabelS1 setText:temperatureString];
temperatureString = nil;

[[cell imageView]setImage:[UIImage imageNamed:imageFromCodeDay1]];
[[cell textLabel]setText:cityString];

return cell;
}

这可能会帮助你....

于 2012-06-26T14:40:57.297 回答
0

您的问题出在以下几行:

UILabel *cellLabelS1 = [[UILabel alloc] initWithFrame:CGRectMake(250, 0, cell.frame.size.width, cell.frame.size.height)];
cellLabelS1.backgroundColor = [UIColor clearColor];
cellLabelS1.font = [UIFont boldSystemFontOfSize:16];
[cellLabelS1 setTextColor:[UIColor whiteColor]];

当你从表格视图中得到一个重用的单元格时,它已经包含了这个标签。避免添加重复标签的方法是仅在需要分配新单元格时添加它。但是,这会使从重复使用的单元格中检索标签变得非常复杂。

我个人建议在界面生成器中创建一个自定义 UITableViewCell,并创建一个具有 UILabel 属性的自定义 UITableViewCell 子类。

于 2012-06-26T14:32:39.400 回答