留着看iOS开发常用知识点

iOS 11 TableView heightForFooter

2017-06-14  本文已影响3163人  一直搬着砖

在iOS 11 中 -(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section 无论设置多大都没有效果,是因为没有实现另外一个代理方法-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section ,为了让footer的高度有效果,我们可以添加类似下面这样实现:

-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    return [[UIView alloc]init];
}

OK !

上一篇下一篇

猜你喜欢

热点阅读