Reload Table view cell with animation (Swift)

前端 未结 4 1904
南笙
南笙 2021-02-04 06:57

Is there a way to reload specific UITableView cells with multiple sections with animations?

I\'ve been using:

self.TheTableView.reloadSect         


        
4条回答
  •  离开以前
    2021-02-04 07:22

    If you want to reload single section in swift 3.0 you can do this:

    tableView.reloadSections(IndexSet(integer: 0), with: .automatic)
    

提交回复
热议问题