0

我在UILabels使用单元格的 contentView 属性未在表格视图单元格中显示时遇到问题。UILabels在我将 UIImage 添加到单元格之前,它们正在显示。我想将文本添加到单元格并使用 cell.contenView 以便我可以将 UILabels 放置在我想要的位置。

感谢您对此的任何帮助。

这是我的代码:

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

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellReuseIdentifier];


        UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 2, 320, 30)];

        titleLabel.tag = 234234;
        titleLabel.backgroundColor = [UIColor clearColor];

        titleLabel.textColor = [UIColor whiteColor];
        [titleLabel setFont:[UIFont fontWithName:@"DIN" size:24]];
        titleLabel.layer.shadowColor = [[UIColor whiteColor] CGColor];
        titleLabel.layer.shadowOpacity = 0.7;
        titleLabel.layer.shouldRasterize=YES;

        [cell.contentView addSubview:titleLabel];

        UILabel *detailLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 160, cell.bounds.size.width, 30)];

        detailLabel.tag = 345345;
        detailLabel.backgroundColor = [UIColor clearColor];

        detailLabel.textColor = [UIColor whiteColor];
        [detailLabel setFont:[UIFont fontWithName:@"DIN" size:18]];
        detailLabel.layer.shadowColor = [[UIColor whiteColor] CGColor];
        detailLabel.layer.shadowOpacity = 0.7;
        detailLabel.layer.shouldRasterize=YES;

        [cell.contentView addSubview:detailLabel];

    }


    UILabel *titleLabel = (UILabel *)[cell viewWithTag:234234];
    titleLabel.text = (NSString *)[[publicDataArray objectAtIndex:indexPath.row] objectForKey:@"title"];

    UILabel *detailLabel = (UILabel *)[cell viewWithTag:345345];
    detailLabel.text = (NSString *)[[publicDataArray objectAtIndex:indexPath.row] objectForKey:@"description"];


    NSString *imageUrlString = [NSString stringWithFormat:@"%@", [[publicDataArray objectAtIndex:indexPath.row] objectForKey:@"image"]];
    UIImage *cachedImage = [self.imageCache objectForKey:imageUrlString];
    if (cachedImage)
    {
        cell.imageView.image = cachedImage;
    }
    else
    {

        cell.imageView.image = [UIImage imageNamed:@"rest.jpg"]; // initialize the image with blank image as a placeholder

        // download in the image in the background

        [self.imageDownloadingQueue addOperationWithBlock:^{

            NSURL *imageUrl   = [NSURL URLWithString:imageUrlString];
            NSData *imageData = [NSData dataWithContentsOfURL:imageUrl];
            UIImage *image    = nil;
            if (imageData)
                image = [UIImage imageWithData:imageData];

            if (image)
            {

                [self.imageCache setObject:image forKey:imageUrlString]; // add the image to your cache

                // finally, update the user interface in the main queue

                [[NSOperationQueue mainQueue] addOperationWithBlock:^{
                    // make sure the cell is still visible

                    UITableViewCell *updateCell = [tableView cellForRowAtIndexPath:indexPath];
                    if (updateCell)
                        cell.imageView.image = image;
                }];
            }
        }];
    }

    return cell;
}

此外,当我添加 cell.textLabel.text = [[publicDataArray objectAtIndex:indexPath.row] objectForKey:@"title"]; 而不是使用 contentView 时,单元格文本会显示在右侧。

在此处输入图像描述

4

1 回答 1

2

你在这里犯了一个愚蠢的错误:

detailLabel.textColor = [UIColor whiteColor];

你想在白色背景上显示白色字体颜色?

我刚刚测试了您的代码,如下所示,它显示正确:

UILabel *titleLabel;
UILabel *detailLabel;

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

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellReuseIdentifier];


        titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 2, 320, 30)];

        titleLabel.tag = 234234;
        titleLabel.backgroundColor = [UIColor clearColor];

        titleLabel.textColor = [UIColor blackColor];
         [titleLabel setFont:[UIFont boldSystemFontOfSize:15]];
        titleLabel.layer.shadowColor = [[UIColor whiteColor] CGColor];
        titleLabel.layer.shadowOpacity = 0.7;
        titleLabel.layer.shouldRasterize=YES;


        [cell.contentView addSubview:titleLabel];

        detailLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 160, cell.bounds.size.width, 30)];

        detailLabel.tag = 345345;
        detailLabel.backgroundColor = [UIColor clearColor];

        detailLabel.textColor = [UIColor blackColor];
        [detailLabel setFont:[UIFont boldSystemFontOfSize:15]];
        detailLabel.layer.shadowColor = [[UIColor whiteColor] CGColor];
        detailLabel.layer.shadowOpacity = 0.7;
        detailLabel.layer.shouldRasterize=YES;
           [cell.contentView addSubview:detailLabel];


      [cell.contentView bringSubviewToFront:titleLabel];
      [cell.contentView bringSubviewToFront:detailLabel];


         }



    detailLabel = (UILabel *)[cell viewWithTag:345345];
    detailLabel.text = [_objects objectAtIndex:indexPath.row];


    titleLabel = (UILabel *)[cell viewWithTag:234234];
    titleLabel.text = [_objects objectAtIndex:indexPath.row];


   return cell;
}

编辑

要将您创建的标签放在图像视图上方,您只需添加这两行:

[cell.contentView bringSubviewToFront:titleLabel];
[cell.contentView bringSubviewToFront:detailLabel];

此外,添加图像 contentView 如下所示:

imgView = [[UIImageView alloc] initWithFrame:CGRectMake(40, 20, 40 ,40)];
imgView.image = [UIImage imageNamed:@"img.png"];
[cell.contentView addSubview:imgvie];

截屏:

在此处输入图像描述

于 2013-06-12T12:27:18.373 回答