gpt4 book ai didi

ios - 加载时未出现 UITableViewCell 字幕

转载 作者:行者123 更新时间:2023-11-29 12:55:34 28 4
gpt4 key购买 nike

我有一个包含单元格的表格,其中只有在搜索了某些内容后才会出现副标题。这是 cellForRowAtIndexPath 的代码:

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

if(!cell)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}

if(tableView == self.tableView)
{

// Configure the cell...
cell.textLabel.text = self.objects[indexPath.row];
cell.detailTextLabel.text = @"test2";
}
else{
// Configure the cell...
cell.textLabel.text = self.results[indexPath.row];
cell.detailTextLabel.text = @"test1";

}

return cell;
}

编辑:ArtOfWarfare 的回答是正确的。这是 Storyboard中的一个问题。见下图:

enter image description here

最佳答案

您的代码表明您有两个单独的表...我建议您的问题在于表的配置方式不同,可能在您的 Storyboard 中。

您是否偶然将其中一个设置为带有标识符“Cell”但样式不是 UITableViewCellStyleSubtitle 的原型(prototype)?这样一来,您的单元格创建方法就不会在其中一个中被调用,而只会在另一个中被调用。

关于ios - 加载时未出现 UITableViewCell 字幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21239847/

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