sectionHeaderHeight与viewForHeade
2016-07-11 本文已影响2091人
打电话记错号码的人
1.sectionHeaderHeight与sectionFooterHeight
self.tableView.sectionHeaderHeight 代表整个table的头部高度
self.tableView.sectionFooterHeight 代表整个table的尾部高度
![](https://img.haomeiwen.com/i1855170/256e1f6778ef4bef.png)
2.viewForHeaderInSection与viewForFooterInSection
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
表示的是一个section的头部尾部高度
viewForHeaderInSection 表示的是一个section的头部高度
viewForFooterInSection 表示的是一个section的尾部高度
![](https://img.haomeiwen.com/i1855170/b8aefaf434ffe3f1.png)