I have a collection view and it has a number of cells in it. I want the user to be able to flick the screen left or right to show a new set of cells. I am trying to get something very similar to the iPhone main screen when you can page between sets of apps.
I have enabled paging and if the scrolling is set to Vertical it all works fine and the user can gesture up and down for the paging to move to next page (not quite like the iPhone but good enough, it does not force whole pages seems to share a row between pages).
The problem is I want it to be that the user swipes left or right but if I put in Horizontal as the scroll direction the cells stop being draw from left to right then next row to being top to bottom and then next column.
I can find very little out there about paging at all, does anyone have any clues or can point me to a good tutorial?
Using Storyboard to try and set this up.
EDIT Or how can I change the order in which the cells are displayed, i.e. Horizontal scrolling but ordered (pipes are a page break);
1 2 3 | 7 8 9
4 5 6 | A B C
They currently come out as
1 3 5 | 7 9 B
2 4 6 | 8 A C