I am converting a Swift 2.3 project o Swift 3 and digging out literally thousands of changes
I currently have the code:
outletCatalog.scrollToRowAtIndexPath(myIndex, atScrollPoisition: .top, animated: false)
However, it seems to be replaced by
func scrollToRow(at: IndexPath, at: UITableViewScrollPosition, animated: Bool)
However - I do not understand the double name of the "at" parameter, and my Google searches did not return anything. And the code translation tools just show that it has
scrollToRow(at:at:animated)
source
share