gpt4 book ai didi

ios - heightForRowAtIndexPath 内的当前单元格高度?

转载 作者:可可西里 更新时间:2023-11-01 03:06:01 27 4
gpt4 key购买 nike

我有一张包含静态单元格的表格。对于一个单元格,我想根据标签的高度(在该单元格内)更改其高度,同时保持所有其他单元格的高度不变。如何获得当前单元格的高度?或者也许有更好的方法?

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if ([indexPath section] == 2) {
return self.myLabel.frame.origin.y *2 + self.myLabel.frame.size.height;
} else {
return ...; // what should go here, so the cell doesn't change its height?
}
}

最佳答案

你可以调用:

[super tableView:tableView heightForRowAtIndexPath:indexPath] 

在 else block 中,这样您就不必担心是否更改了默认高度。

关于ios - heightForRowAtIndexPath 内的当前单元格高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15927693/

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