I\'m using the following code to detect if I\'ve reached the bottom of a UITableView
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{ if(self.tableVi
Store the last position of the scrollview in your didScroll method. If you detect a scroll down and the last position was already the bottom of the scrollview then you ignore it.