Reload Table view cell with animation (Swift)

前端 未结 4 1951
南笙
南笙 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条回答
  •  萌比男神i
    2021-02-04 07:18

    In Swift 3.0

    We can reload particular row of particular section in tableview

    let indexPath = IndexPath(item: 2, section: 0)
    self.tableView.reloadRows(at: [indexPath], with: .automatic)
    

提交回复
热议问题