gpt4 book ai didi

iphone - UITableView 中节标题的默认高度

转载 作者:行者123 更新时间:2023-12-03 18:08:06 26 4
gpt4 key购买 nike

我想设置 UITableView 中第一个标题的高度。对于其他标题,我希望它们保持默认高度。我可以用什么值/常量来代替下面代码中的“someDefaultHeight”?

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if (section == 0)
return kFirstHeaderHeight;

return someDefaultHeight;
}

谢谢

最佳答案

从 IOS 5.0 开始,您可以在大多数委托(delegate)方法中返回 UITableViewAutomaticDimension。它位于文档页面的底部

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if(section == CUSTOM_SECTION)
{
return CUSTOM_VALUE;
}
return UITableViewAutomaticDimension;
}

关于iphone - UITableView 中节标题的默认高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1200438/

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