gpt4 book ai didi

ios - 尝试设置 UILabel 的文本时 UIImage 消失

转载 作者:行者123 更新时间:2023-11-29 10:40:39 29 4
gpt4 key购买 nike

我正在使用这段代码来初始化 UITableView 中的文本标签:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = [menuItems objectAtIndex:indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
[cell.textLabel setText: [menuTitlesEN objectAtIndex:indexPath.row]];
return cell;
}

我的表格由四个静态单元格组成,每个单元格包含一个 UIImageView 和一个 UILabel。

当未调用 setText 时,我的表格看起来应该是这样的:

Screenshot 1

但是调用 setText 会导致 UIImage 以某种方式消失:

enter image description here

我对 iOS 开发非常陌生。谁能指导我正确的方向?

最佳答案

由于您覆盖了默认单元格 (cell.textLabel) 的 UILabel。因此,您最好将标记属性赋予 UITableViewCell 中的自定义 UILabel,然后为其分配文本。

尝试类似的:

UILabel *lbl = (UILabel*)[cell viewWithTag:identityOfUILabel];
[lbl setText: [menuTitlesEN objectAtIndex:indexPath.row]];

关于ios - 尝试设置 UILabel 的文本时 UIImage 消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24709569/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com