views:

18

answers:

1

I would like to make an infinite scrolling on a UITableViewController, I'm using the scrollViewDidScroll: method to check the contentOffset, however I'm not able to drill down an offset that would be the bottom of the ScrollView.

Any suggestions?

Thanks in advance.

+1  A: 

Assuming contentSize.height > bounds.size.height

if ( contentOffset.y >= contentSize.height - bounds.size.height ) { ... }
drawnonward