gpt4 book ai didi

iphone - 删除 UITableView 中 2 个部分之间的标题空间

转载 作者:行者123 更新时间:2023-11-28 22:36:00 24 4
gpt4 key购买 nike

我使用这段代码来设置表格 View 部分标题的颜色等

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
// create the parent view that will hold header Label
UIView* customView = [[UIView alloc] initWithFrame:CGRectMake(10.0, 0.0, 300.0, 44.0)];
// create the button object
UILabel * headerLabel = [[UILabel alloc] initWithFrame:CGRectZero];
headerLabel.backgroundColor = [UIColor clearColor];
headerLabel.opaque = NO;
headerLabel.textColor = [UIColor whiteColor];
headerLabel.highlightedTextColor = [UIColor whiteColor];
headerLabel.font = [UIFont boldSystemFontOfSize:18];
headerLabel.shadowColor = [UIColor blackColor];
headerLabel.shadowOffset = CGSizeMake(0, 1.0);
headerLabel.frame = CGRectMake(10.0, 0.0, 300.0, 44.0);

if (section == 0) {

headerLabel.text = @"Section 0 header";
[customView addSubview:headerLabel];
}
if (section == 1) {

//headerLabel.text = @"Section 1 header";
//[customView addSubview:headerLabel];
customView = nil;
tableView.tableHeaderView = nil;
}
if (section == 2) {

headerLabel.text = @"Section 2 header";
[customView addSubview:headerLabel];
}

return customView;
}

在第 1 节中,我不想要标题,但第 0 节和第 1 节之间仍然有更大的空间。

enter image description here

最佳答案

关于iphone - 删除 UITableView 中 2 个部分之间的标题空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16010553/

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