0

I want to listen tableview scrolled down or up, if is it possible, please let me know. thanks.

idris yıldız
  • 2,077
  • 19
  • 21

2 Answers2

0

In the ViewController that you have set as the delegate for the tableview, you can implement scrollView delegate functions as well as a tableView contains a scrollView.

Swinny89
  • 7,093
  • 3
  • 33
  • 52
0

UITableView is subclass of UIScrollView so implementing

- (void)scrollViewDidScroll:(UIScrollView *)scrollView 

you will know when the UITableView is scrolled.

Rajat
  • 10,869
  • 2
  • 36
  • 55