我在uitableview
中有几个部分,如下所示:
如何隐藏第一部分标题,例如Men
。
答案 0 :(得分:1)
尝试覆盖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;
}