I\'m using a UITableView in my iPhone app, and I have a list of people that belong to a group. I would like it so that when the user clicks on a particular pers
UITableView
Swift 4 and Above
add below code into you tableview's didselect row delegate method
tableView.beginUpdates() tableView.setNeedsLayout() tableView.endUpdates()