If you want to to pack the cells neatly together even if some of the other content in another cell is bigger, how do one do that?
If you look at the picture below, the first string is the biggest, but if I want to pack the other cells as neatly and tightly together as the first one, regardless of the size, how is this done?
I want to do this regardless of the size both from the sides and up and down. I want the cells to be laid out as the arrows in this picture are pointing.
UPDATE: the first line of text is two cells packed togheter.
You have to use UICollectionViewFlowLayout to achieve this
Note: Below information's are taken from Raywenderlich blog
You can subclass UICollectionViewLayout to create your own custom layouts , but Apple has graciously provided developers with a basic “flow-based” layout called UICollectionViewLayout. It lays elements out one after another based on their size, quite like a grid view. You can use this layout class out of the box, or subclass it to get some interesting behavior and visual effects.
You can see a good example in Raywenderlich blog
Example code:
There are more delegate methods you can implement than this. Examples are given below