Reputation: 476
The UICollectionView layout I need to implement contains three sections, one below the other vertically, and each section is scrollable horizontally.
SECTION 1: 1 2 3 4 5 ..............
SECTION 2: 1 2 3 4 5 ..............
SECTION 3: 1 2 3 4 5 ..............
Since the UICollectionView has only one scrollView, all the sections scroll at a time but not one at a time. So I feel custom Layout won't help in this situation. Please throw some light on other possible implementations of this.
Thank you.
Upvotes: 0
Views: 528
Reputation: 2980
What about a UITableView
with three custom UITableViewCell
each of them containing one UICollectionView
?
Upvotes: 1