美文网首页
iOS 11 tableView 适配踩的一个坑

iOS 11 tableView 适配踩的一个坑

作者: AmazingMasterYi | 来源:发表于2017-09-20 15:30 被阅读0次

    升级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;
    

    亲测有效

    相关文章

      网友评论

          本文标题:iOS 11 tableView 适配踩的一个坑

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