Is there any way to find how much UITableView has been scrolled in any direction ? I am interested in amount not in direction.
Amount of scrolling in scrollViewWillBeginDragging
2.2k Views Asked by Uniruddh At
3
There are 3 best solutions below
0

you can find it using below syntax...
NSLog(@"scrolled:%f",yourtableview.contentOffset.y);//y for vertical, x for horizontal
0

You need to measure the contentOffset
of the UITableView
when dragging begins and when it ends. Take a difference between the two, it will give you the amount of change from initial to final position.
CGPoint oldOffset;
CGPoint newOffset;
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
oldOffset = scrollView.contentOffset;
}
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
newOffset = *targetContentOffset;
CGPoint diff = {newOffset.x - oldOffset.x, newOffset.y - oldOffset.y};
// Where diff.x => amount of change in x-coord of offset
// diff.y => amount of change in y coord of offset
}
Hope that helps!
You can easily grab the exact offset of the table view by looking at its contentOffset property. For the vertical scroll, look at:
and with this you can take your tableview to any particular location
for you requirement of load more cells after 10 you can use this logic