gpt4 book ai didi

ios - UITableViewCell 和标签不显示文本

转载 作者:行者123 更新时间:2023-11-28 19:57:42 26 4
gpt4 key购买 nike

我有一个 UITableView,其单元格中有两个标签。 TableView 链接到数据源和委托(delegate),单元格中的标签链接到 IBOutlet,等等。在我看来这应该可以工作,但是下面的代码没有运行,所以 Cell 或标签没有填充文本。有任何想法吗?或者我遗漏了什么?

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

CustomClassText *customText = _arrayThatHasText[indexPath.row];


if (![self isSelectionMode]) {
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}

cell.TitleLabel.text = customText.firstLabel;
cell.TextLabel.text = customText.secondLabel;

return cell;
}

最佳答案

您还记得注册单元标识符以供重复使用吗?

- (void)viewDidLoad    
{
[super viewDidLoad];

[self.tableView registerNib:[UINib nibWithNibName:@"CustomClassCell" bundle:nil] forCellReuseIdentifier:@"theLabelCell"];
}

关于ios - UITableViewCell 和标签不显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25627387/

26 4 0