Error: UITableView jump to top with UITableViewAutomaticDimension

前端 未结 7 1692
半阙折子戏
半阙折子戏 2020-12-05 15:17

I am using UITableView with estimatedRowHeight and UITableViewAutomaticDimension. Also I am using NSFetchedResultsControllerDele

7条回答
  •  失恋的感觉
    2020-12-05 15:24

    func viewWillDisappear(animated: Bool) {
        super.viewWillDisappear(animated)
        tabelView.reloadData()
    }
    

    this is work for me

提交回复
热议问题