I\'m using the following code to detect if I\'ve reached the bottom of a UITableView
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
if(self.tableVi
Try to use another algorithm to detect, that you reached the bottom of table view. For example, look at the cellForRowAtIndexPath:(NSIndexPath *)indexPath to the indexPath of a current cell and if the number of row in IndexPath equals to the number of rows in your data array, then you reached a bottom.