美文网首页留着看iOS开发常用知识点
iOS 11 TableView heightForFooter

iOS 11 TableView heightForFooter

作者: 一直搬着砖 | 来源:发表于2017-06-14 12:35 被阅读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 !

    相关文章

      网友评论

      本文标题:iOS 11 TableView heightForFooter

      本文链接:https://www.haomeiwen.com/subject/sbpsqxtx.html