gpt4 book ai didi

ios - 删除部分上方的行

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:46:52 24 4
gpt4 key购买 nike

我的自定义剖面 View 上方总是有一行。我怎样才能删除它?

最佳答案

试试这个,这段代码对我有用:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {

UILabel *sectionHeader = [[UILabel alloc] initWithFrame:CGRectNull];
sectionHeader.hidden = YES;
return sectionHeader;

}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {

return 0;
}

希望对您有所帮助!

关于ios - 删除部分上方的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21221301/

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