UITableView delegate action when tableView is scrolled?

前端 未结 2 2001
故里飘歌
故里飘歌 2020-12-17 08:33

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

2条回答
  •  孤街浪徒
    2020-12-17 09:09

    Swift 4

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

提交回复
热议问题