While I know nested scrollViews aren't ideal, our designers provided me with this setup, so I'm doing my best to make it work. Let's begin!
View Hierarchy
- UIView
- UIScrollView (Vertical Scrolling Only)
- UIImageView
- UICollectionView #1 (Horizontal Scrolling Only)
- UIImageView (different from previous UIImageView)
- UICollectionView #2 (Vertical Scrolling Only)
- UIScrollView (Vertical Scrolling Only)
Important Note
All my views are defined using programmatic Auto Layout. Each successive view in the UIScrollView's subview hierarchy has a y-coordinate dependency on the view that came before it.
The Problem
For the sake of simplicity, let's modify the nomenclature a bit:
_outerScrollView
will refer toUIScrollView
_innerScrollView
will refer toUICollectionView #2
I'd like for my _outerScrollView
to route its touch event to the _innerScrollView
upon reaching the bottom of its contentSize. I'd like the reverse to happen when I scroll back up.
At present, I have the following code:
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
CGFloat bottomEdge = [scrollView contentOffset].y + CGRectGetHeight(scrollView.frame);
if (bottomEdge >= [_outerScrollView contentSize].height) {
_outerScrollView.scrollEnabled = NO;
_innerScrollView.scrollEnabled = YES;
} else {
_outerScrollView.scrollEnabled = YES;
_innerScrollView.scrollEnabled = NO;
}
}
where the initial conditions (before any scrolling occurs) is set to:
outerScrollView.scrollEnabled = YES;
innerScrollView.scrollEnabled = NO;
What happens?
Upon touching the view, the outerScrollView
scrolls until its bottom edge, and then has a rubber band effect due to _outerScrollView.bounces = YES;
If I touch the view again, the innerScrollView scroll until it hits its bottom edge. On the way back up, the same rubber banding effect occurs in the reverse order. What I want to happen is have a fluid motion between the two subviews.
Obviously, this is due to the scrollEnabled
conditions that are set in the conditional in the code snippet. What I'm trying to figure out is how to route the speed/velocity of one scrollView to the next scrollView upon hitting an edge.
Any assistance in this issue would be greatly appreciated.
Other Notes
- This did not work for me: https://github.com/ole/OLEContainerScrollView
- I am considering putting everything in the UIScrollView hierarchy (except for UICollectionView #2) inside UICollectionView #2
supplementaryView
. Not sure if that would work.
Figured it out!
First:
_scrollView.pagingEnabled = YES;
Second:
Where:
_scrollView
is the_outerScrollView
_offersCollectionView
is the_innerScrollView
(which was UICollectionView #2 in my original post).Here's what happens now:
offersCollectionView
takes over the entire view, moving the other subViews out of the view.Accepted answer didn't work for me. Here's what did:
Define a subclass of
UIScrollView
:Since it's not possible to reroute touches to another view, the only way to ensure that the outer scrollview can continue scrolling once the inner one stops is if it had been receiving the touches the whole time. However, in order to prevent the outer one from moving while the inner one is, we have to lock it without setting its
isScrollEnabled
tofalse
, otherwise it'll stop receiving the touches and won't be able to pick up where the inner one left off when we want to scroll past the inner one's top or bottom.That's done by assigning a
UIScrollViewDelegate
to the scrollviews, and implementingscrollViewDidScroll(_:)
as shown:And that's it. This will stop your outer scrollview from scrolling when you begin scrolling the inner one, and get it to pick up again when the inner one is scrolled all the way to one of its ends.