Monday, March 19, 2012

Detecting a when a a UIScrollView reaches the bottom.

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
 if (scrollView.contentOffset.y == scrollView.contentSize.height - scrollView.frame.size.height) {
 // reached the bottom
 }
}

No comments:

Post a Comment