iOS reloadSections TableView下移问题

2019-08-23  本文已影响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()
上一篇 下一篇

猜你喜欢

热点阅读