Is there a way to reload specific UITableView cells with multiple sections with animations?
UITableView
I\'ve been using:
self.TheTableView.reloadSect
If you want to reload single section in swift 3.0 you can do this:
tableView.reloadSections(IndexSet(integer: 0), with: .automatic)