I did google enough, & I did check posts like these ( Finding the direction of scrolling in a UIScrollView? ) in stackoverflow before posting this. I have a dynamic number of photos in an iPhone App, that am displaying through UIScrollView
. At any point in time, I have only 3 photos being displayed in the scroll-view. When I have, say 4 photos, in total: 1st photo : displayed at offset 0.0 2nd photo : displayed at offset 320.0 3rd photo : displayed at offset 640.0
Now, when the user scrolls to the 4th photo, the scroll-view resets to 0.0 offset. If the user tries to scroll 'beyond' the 4th photo, scrolling should stop in the right-direction only (so that user doesn't scroll 'beyond'). But currently, the user 'is able' to scroll beyond the last photo ; however, I detect this programmatically & reset the offset. But it doesn't look neat, as the user sees the black background momentarily. I want to detect that the user has started scrolling 'right' (remember, scrolling 'left' i.e. to the 'previous' photo is okay) in scrollViewWillBeginDragging
, so that I can stop any further scrolling to the right.
What I tried:
self.scrollView.panGestureRecognizer
's translationInView
isn't working, because there is no panGestureRecognizer
instance returned in the first place (!), though the UIScrollView API claims so.scrollViewDidEndDecelerating
is possible, though it'll not serve my purpose.I had no issues determining direction in scrollViewWillBeginDragging
when checking the scroll view's panGestureRecognizer
:
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { CGPoint translation = [scrollView.panGestureRecognizer translationInView:scrollView.superview]; if(translation.y > 0) { // react to dragging down } else { // react to dragging up } }
I found it very useful in canceling out of a scroll at the very first drag move when the user is dragging in a forbidden direction.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With