chandu
chandu

Reputation: 476

Custom UICollectionView Layout

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

Answers (2)

apascual
apascual

Reputation: 2980

What about a UITableView with three custom UITableViewCell each of them containing one UICollectionView?

Upvotes: 1

Rui Peres
Rui Peres

Reputation: 25917

One UITableView with 3 rows. Each with a UICollectionView.

Upvotes: 1

Related Questions