UITableView delegate action when tableView is scrolled?

Viewed 24924

Is there a UITableView delegate-action that runs when the tableView is being scrolled?

This is probably really easy, but I can't find it.

Thank you :)

2 Answers

Swift 4

override func scrollViewDidScroll(_ scrollView: UIScrollView) {
    print("I'm scrolling!")
}
Related