headerViewForSection的坑

项目开发中看到了tableView的方法如下:
- (nullable UITableViewHeaderFooterView *)headerViewForSection:(NSInteger)section
照字面意思理解,是创建tableView的sectionHeaderView,但是实际使用中却不会调用.
遍查文档,才明白原来上述方法并不属于UITableViewDelegate的方法,只是tableView的内部方法,所以才无法被调用.
如果遇到要使用sectionHeaderView的方法,应该使用如下方法:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section//生成UITableViewHeaderFooterView
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section//控制高度

下面是在StackOverFlow搜到的答案:
(headerViewForSection无法调用)

喜欢和收藏都是对我的鼓励和支持~

你可能感兴趣的:(headerViewForSection的坑)