1.sectionHeaderHeight與sectionFooterHeight
self.tableView.sectionHeaderHeight ?代表整個(gè)table的頭部高度
self.tableView.sectionFooterHeight ? 代表整個(gè)table的尾部高度
sectionHeaderHeight與sectionFooterHeight的表示
2.viewForHeaderInSection與viewForFooterInSection
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
表示的是一個(gè)section的頭部尾部高度
viewForHeaderInSection? 表示的是一個(gè)section的頭部高度
viewForFooterInSection? 表示的是一個(gè)section的尾部高度
viewForHeaderInSection與viewForFooterInSection的表示