I'm designing a layout for my app that is going to take advantage of UICollectionView
. I have created some moderately complex collectionView
-based apps before, but I may need to subclass the layout class for this one. The main point I'm trying to figure out is whether I can have different sections of the same collectionView
scroll in different directions.
Based on what I have read and tried so far, the only way to have one section scroll horizontally and another vertically would be by using multiple nested instances of UICollectionView
.
This is a basic idea of my layout. My guess is that even with subclassing, a single UICollectionView
would not be able to handle it. Or would it?