Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
  2. {
  3. }
  4.  
  5. - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
  6. {
  7. float endScrolling = (scrollView.contentOffset.y + scrollView.frame.size.height);
  8. if (endScrolling >= scrollView.contentSize.height)
  9. {
  10. //Manage Pagination
  11. from_Post = from_Data + Page_Number;
  12. to_Post = to_Data + Page_Number;
  13.  
  14. //Called Function for You Performing action
  15. [self GetDataFrom:from_Post To:to_Post];
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement