gpt4 book ai didi

ios - 根据文本高度设置 UITableViewCell 高度和单元格的文本标签

转载 作者:行者123 更新时间:2023-11-29 03:44:50 27 4
gpt4 key购买 nike

我已按照我在 stackoverflow 上找到的说明来修复以下问题,但没有任何效果。下面是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

static NSString *CellIdentifier = @"DoCCell";
DoCCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[DoCCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...

CGSize constraintSize = CGSizeMake(cell.infoLabel.frame.size.width, MAXFLOAT);
CGSize labelSize = [_content[[indexPath row] * 2] sizeWithFont:[UIFont fontWithName:@"HelveticaNeue-Light" size:12.0f]
constrainedToSize:constraintSize
lineBreakMode:NSLineBreakByWordWrapping];
CGRect frame = CGRectMake (cell.infoLabel.frame.origin.x, cell.infoLabel.frame.origin.y, labelSize.width, labelSize.height);
[cell.infoLabel setFrame:frame];

cell.infoLabel.lineBreakMode = NSLineBreakByWordWrapping;
cell.infoLabel.numberOfLines = 10;

_font = cell.infoLabel.font;
cell.infoLabel.text = _content[[indexPath row] * 2];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}


- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
CGSize constraintSize = CGSizeMake(280.0f, MAXFLOAT);

CGSize size = [_content[[indexPath row] * 2] sizeWithFont:[UIFont fontWithName:@"HelveticaNeue-Light" size:12.0f]
constrainedToSize:constraintSize
lineBreakMode:NSLineBreakByWordWrapping];
return size.height + 30.0;
}

但是当我运行代码时,单元格的高度会适当更改,而标签大小则不会。

该单元格是自定义单元格,我已通过 .xib 文件添加了标签。我尝试手动拉伸(stretch)标签,该标签可以显示所有文本,因此问题不在于标签的包装。我还测试了 cell.infoLabel.frame.size.height ,就值而言,高度值确实随着单元格的高度而变化,但它不会这样显示。我做错了什么?

最佳答案

我认为问题可能在于调整 UILabel 实例中文本的垂直对齐方式。

我认为你应该在 cellForRowAtIndexPath 中执行以下操作:

cell.infoLabel.text = _content[[indexPath row] * 2];
cell.infoLabel.numberOfLines = 0;
[cell.infoLabel sizeToFit];

有关它的更多详细信息可以在以下链接中找到:Vertical Alignment of UILabel Text

希望对您有所帮助! :)

关于ios - 根据文本高度设置 UITableViewCell 高度和单元格的文本标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17865962/

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