Hy, i have a UICollectionViewController where scrolling in a vertical direction is possible. I have several sections, for instance, Movies, Books, Music, etc. And several items per section, Movie 1, Movie 2, Music 1, Music 2. I was able to split the different sections by creating Header. I used the example in How to Add Header and Footer View in UICollectionView, so my application is very similar to the one in that example.
Now what i wanted to do is, enabling horizontal scrolling in the several items per section, without scrolling the entire page. Or by other words, if i have one screen with the Section Movies and Music. If i scroll horizontal in the Movies section, i will see Movies 2, but Music 1. If i scroll again in Movies i will see Movies 2, but still Music 1. I've read that UICollectionView only permits one type of scrolling, either vertical or horizontal, and that lead me to UITableView, but searching on that topic i only found solutions that when you swipe horizontally all the sections move, and not only one.
Thank you in advance
EDIT:
Maybe i can use a UITableView and add a UIScrollView with the contentSize of the UITableView Cell, any ideas if that is a good way to go?