gpt4 book ai didi

iphone - tableView单元格高度...如何自定义它?

转载 作者:行者123 更新时间:2023-12-03 18:21:09 24 4
gpt4 key购买 nike

是否可以修改分组表格 View 中仅一个单元格的高度?
我有一个包含 3 行和 2 行 2 个部分的表格 View ...我会更改第二部分第二行的行高度...

我该怎么做?
谢谢!

最佳答案

你可以看看这个方法:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

就您而言,代码应如下所示:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 1 && indexPath.row == 1) {
return SPECIAL_HEIGHT;
}
return NORMAL_HEIGHT;
}

您可以查找有关the method here的更多详细信息

关于iphone - tableView单元格高度...如何自定义它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3737218/

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