您好我正在尝试根据视图调整标题大小。但是,它只调整第一个标题的大小。其他只是默认设置。我在viewForHeaderInSection函数中重置了大小。这是代码:
sectionHeight[section]=descriptionView.frame.origin.y+descriptionView.frame.size.height+5;
[self tableView:tableView heightForHeaderInSection:section];
-(CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return sectionHeight[section];
}
sectionHeight是一个指向包含高度的浮点数组的指针,在viewdidload中被初始化为50.0。检查变量后,我确认值确实发生了变化,但是节标题的高度仍为50像素。