Custom layout for different cell sizes in UICollectionView

ios6, objective-c, uicollectionview

Solution

You can check out https://github.com/bryceredd/RFQuiltLayout . Looks like something you can use for this

Problem

I would like to use the new UICollectionView, but I'm not sure if it is possible to build the following: As you can see, there are two different cell types. One is portrait, one is landscape. When I use the flow layout, it always creates rows of cells which are as high as the tallest cell. Not this kind of "fluid" layout I need. Is it possible at all to achieve this kind of layout with a UICollectionView? Has anyone done something like this before? Are there any samples? I already checked out many tutorials and the Class References ... Thanks!

Original source