gpt4 book ai didi

ios: uitableview - 如何删除第一部分

转载 作者:行者123 更新时间:2023-11-29 13:03:48 26 4
gpt4 key购买 nike

我在 uitableview 中有几个部分,如下所示:

enter image description here

如何隐藏第一节标题,例如男人

最佳答案

尝试覆盖 UITableViewSource 中的 GetHeightForHeader,并返回 0 这是第一部分

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

在 Xamarin 中,它看起来像:

public override float GetHeightForHeader (UITableView tableView, int section)
{
if (section == 0)
return 0;
return tableView.SectionHeaderHeight;
}

关于ios: uitableview - 如何删除第一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19130364/

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