I have a list of numbers in a table view like this.

As you can see th
You can use find the index of the item(which will be its row), and then scroll to that index.
find function returns the index of a particular element in the array.
if let index = find(items, groupNoToScroll)
{
let indexPath = NSIndexPath(forRow: index, inSection: 0)
tableView.scrollToRowAtIndexPath(indexPath, atScrollPosition: .Top, animated: true)
}