How to detect scrolling of UITableView?

前端 未结 4 1904
无人共我
无人共我 2021-02-04 05:05

There is a similar question to this but answer is very general, vague.( Detecting UITableView scrolling ) Please don\'t dismiss. I am looking for concrete solution.

I ha

4条回答
  •  遥遥无期
    2021-02-04 05:30

    - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
        if (scrollView == myTableView){
           // Your code here.....
        }
    }
    

提交回复
热议问题