我浏览了有关UITableView类和委托引用的Apple文档,但是找不到明确设置表头高度的方法。
我使用以下委托设置表格单元格高度:
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
并使用以下委托设置节的页眉/页脚高度。
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
有人可以帮我设置表格的页眉/页脚高度吗?
谢谢。