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 :)
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 :)
Swift 4
override func scrollViewDidScroll(_ scrollView: UIScrollView) {
print("I'm scrolling!")
}