顶部的2行(每月,每年)与底部的第3行(生命周期)不同。我想删除部分之间的Lifetime行上方的空格。我尝试在heightForHeaderInSection方法中将标题高度更改为1.0,但它似乎无法正常工作。
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
CGFloat headerHeight = 0.0;
switch (section) {
case 0:
headerHeight = [self featuredProductHeaderView].frame.size.height;
break;
case 1: {
if (_groupOneSectionTitle) {
headerHeight = 1.0;
}
}
答案 0 :(得分:0)
您还需要设置页脚高度,并确保没有返回页眉/页脚的标题,也不返回页眉/页脚的视图。