Is there a way to reload specific UITableView cells with multiple sections with animations?
UITableView
I\'ve been using:
self.TheTableView.reloadSect
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)