I am reloading a tableView section using this code -
self.tableView.beginUpdates() self.tableView.reloadSections(NSIndexSet(index: 1), withRowAnimation: UITa
To prevent scrolling and animation, do this:
UIView.performWithoutAnimation { let loc = tableView.contentOffset tableView.reloadRows(at: [indexPath], with: .none) tableView.contentOffset = loc }