How to know when UITableView did scroll to bottom in iPhone?
ios, scroll, uitableview
Solution
The best way is to test a point at the bottom of the screen and use this method call when ever the user scrolls (`scrollViewDidScroll`):
- (NSIndexPath *)indexPathForRowAtPoint:(CGPoint)point
Test a point near the bottom of the screen, and then using the indexPath it returns check if that indexPath is the last row then if it is, add rows.
Problem
I would like to know when a `UITableView` did scroll to bottom in order to load and show more content, something like a delegate or something else to let the controller know when the table did scroll to bottom. How can I do this?