gpt4 book ai didi

ios - UITableViewCell 副标题。无法正常工作

转载 作者:可可西里 更新时间:2023-11-01 05:09:34 26 4
gpt4 key购买 nike

使用 Xcode 4.6,我试图显示一个典型的 UITableView,其单元格带有字幕。

如果我没记错的话,代码是这样的:

- (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];
}

Test *myTest = [self listTests][indexPath.row];

cell.textLabel.text = [myTest name];

UIFont *cellFont = [UIFont systemFontOfSize:16.0];
cell.textLabel.font = cellFont;

UIFont *detailFont = [UIFont systemFontOfSize:12.0];
NSMutableString *detailText = [NSMutableString stringWithFormat:@"%d", [myTest numQuestions]];
[detailText appendString:@" preguntas."];

cell.detailTextLabel.text = detailText;
cell.detailTextLabel.font = detailFont;

return cell;

出于某种原因,它永远不会通过这行代码:

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

所以单元格永远不会用 UITableViewCellStyleSubtitle 初始化。

在执行 [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

时,总是从一开始就得到一个有效的单元格

我做错了什么?

真的很破旧。我总是使用此代码,它通常可以正常工作。我还能在其他地方做错什么吗?

最佳答案

当您的单元格是使用 Storyboard 原型(prototype)定义时,就会发生这种情况。在这种情况下,可重用单元格是使用 initWithCoder: 方法预先创建的,因此 if (cell == nil) 永远不会被命中。有关详细信息,请参阅 this question

由于您似乎想使用具有标准样式的单元格,因此将表格更改为使用 Storyboard原型(prototype)或将原型(prototype)设置为“副标题”应该可以解决此问题。 p>

关于ios - UITableViewCell 副标题。无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15292430/

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