gpt4 book ai didi

ios - detailTextLabel 不工作

转载 作者:行者123 更新时间:2023-11-28 22:54:40 25 4
gpt4 key购买 nike

我知道这个问题以前发布过,我根据他们的更正修正了我的代码,但仍然没有得到单元格工作的细节,只有正文。这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell==nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];//It's well initialized
}
cell.textLabel.text=[myArray objectAtIndex:indexPath.row];
cell.detailTextLabel.text=@"All the stores";

return cell;
}

我应该看到的是文本和详细文本。但是,我只看到正文。提前致谢。

最佳答案

Storyboard可能包含具有相同重用标识符的原型(prototype)单元格,并且配置为不同的样式(即没有字幕)。为了有效调试,您可以删除对 tableview 的调用以给您一个出列的单元格,并且每次都重新实例化一个单元格以查看您的新单元格是否正常工作。但是,我建议采用另一种方式,在 Storyboard中配置原型(prototype)单元,并使用它的配置(如果它不存在,甚至可能引发异常)。

关于ios - detailTextLabel 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11069326/

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