升级iOS 11只有,发现
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 。
这两个方法失效了
这时候只需要设置tableView的几个属性即可
self.tableview.estimatedRowHeight = 0;
self.tableview.estimatedSectionHeaderHeight = 0;
self.tableview.estimatedSectionFooterHeight = 0;
亲测有效
网友评论