0

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

idris yıldız
  • 2,097
  • 20
  • 22

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,273
  • 3
  • 32
  • 52
0

UITableView is subclass of UIScrollView so implementing

- (void)scrollViewDidScroll:(UIScrollView *)scrollView 

you will know when the UITableView is scrolled.

Rajat
  • 10,977
  • 3
  • 38
  • 55