UICollectionViewFlowLayout goes left-to-right in a row, then wraps to the next row. I want a layout that goes top-to-bottom, then wraps back up to the next column. Think of it as a UITableView that wraps into multiple columns, which scrolls horizontally.
UICollectionViewFlowLayout is close to what I want – can I subclass it or must I subclass UICollectionViewLayout and start from scratch? (This answer leads me to believe I can't use flow layout.)
Visible Screen
[ 1 6 11 ] 16
[ 2 7 12 ] 17
[ 3 8 13 ] 18
[ 4 9 14 ]
[ 5 10 15 ]