I am reloading a tableView section using this code -
self.tableView.beginUpdates() self.tableView.reloadSections(NSIndexSet(index: 1), withRowAnimation: UITa
Try this:
UIView.setAnimationsEnabled(false) self.tableView.beginUpdates() self.tableView.reloadSections(NSIndexSet(index: 1) as IndexSet, with: UITableViewRowAnimation.none) self.tableView.endUpdates()