UITableView Refresh without scrolling

后端 未结 12 755
时光说笑
时光说笑 2021-02-03 23:06

I have a _TableView with items , and I want to set automatic refresh,and I don\'t want it to scroll on refresh , lets say user scrolled 2 pages down , and the refre

12条回答
  •  一个人的身影
    2021-02-03 23:20

    This code will prevent unnecessary animation and maintain the scroll view's content offset, it worked fine for me.

    let lastScrollOffset = tableView.contentOffset
    tableView.beginUpdates()
    tableView.reloadData()
    tableView.endUpdates()
    tableView.layer.removeAllAnimations()
    tableView.setContentOffset(lastScrollOffset, animated: false)
    

提交回复
热议问题