美文网首页
iOS reloadSections TableView下移问题

iOS reloadSections TableView下移问题

作者: 冷煖自知 | 来源:发表于2019-08-23 15:06 被阅读0次

在代理方法中写入Header高度

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
        return 52
    }

然后刷新时候调用

            CATransaction.begin()
            CATransaction.setCompletionBlock({
                self.tableView.reloadData()
            })
            self.tableView.reloadSections([section], with: UITableView.RowAnimation.automatic)
            CATransaction.commit()

相关文章

网友评论

      本文标题:iOS reloadSections TableView下移问题

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