iOS: 自定义 UITableViewCell 未显示数据

iOS: Custom UITableViewCell not showing data

我在我的 UIViewController 中创建了 UITableView 并在情节提要中构建了一个原型单元。我为要更改的单元格中的所有元素分配了标签,并且我正在代码中更改它们。

(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 被调用时,我的数据被处理,我可以看到一个单元格出现了我在情节提要中设置的红色背景颜色,但是图像或文本丢失了。我认为问题在于实施,但我无法弄清楚我做错了什么。

故事板是这样的:

这是相关代码:

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

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

    if(tableView == youLikeTableView)
    {
        UIView* youLikeImageFrame = (UIView *)[cell.contentView viewWithTag:100];
        UIImageView* youLikeImageView = (UIImageView *)[cell.contentView viewWithTag:101];
        UILabel *youLikeNameLabel = (UILabel *)[cell.contentView viewWithTag:102];

        for(int i = 0; i < [youLike count]; i++)
        {
            youLikeImageFrame.layer.cornerRadius = youLikeImageFrame.frame.size.width / 2;
            [youLikeImageView setImage:[youLikeImages objectAtIndex:i]];
            youLikeImageView.layer.cornerRadius = youLikeImageView.frame.size.width / 2;

            youLikeNameLabel.text = [youLikeName objectAtIndex:i];
        }
    }

    return cell;
}

这是没有文本或图像的单元格

您忘记将它们添加为子视图

[cell addSubView:youLikeImageFrame];
[cell addSubView: youLikeImageView]; and 
[cell addSubView: youLikeNameLabel];

就在

之前
return cell;