UITableview Scrolls to Top on Reload

后端 未结 5 1312
不知归路
不知归路 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:36

    In swift 3.1

    DispatchQueue.main.async(execute: {
    
        self.TableView.reloadData()
        self.TableView.contentOffset = .zero
    
    })
    

提交回复
热议问题