I have a list of numbers in a table view like this.
As you can see th
Swift 4:
let indexPath = IndexPath(row: row, section: section) tableView.scrollToRow(at: indexPath, at: .top, animated: true)
(first, of course, you have to assign values to row and section based on which cell you want to scroll to)