UITableview Scrolls to Top on Reload

后端 未结 5 1315
不知归路
不知归路 2020-12-28 18:23

I am facing problem in my app - you can post and edit your favorite places. After posting a post, or editing a specific post (UITableViewCell), UITablevie

5条回答
  •  长情又很酷
    2020-12-28 18:25

    Just go for these lines if you want an easy solution

    let contentOffset = tableView.contentOffset
    tableView.reloadData()
    tableView.setContentOffset(contentOffset, animated: false)
    

提交回复
热议问题