0

I have a UICollectionView with a UICollectionViewFlowLayout and cells that have different widths. I want my cells to float left and have the same spacing between them. I don't care if there is extra white spacing on the right of every row. Any ideas? Thanks!

Thank you very much!

enter image description here

blee908
  • 12,165
  • 10
  • 34
  • 41

1 Answers1

0

You have to implement custom UICollectionViewFlowLayout, and override this method:

- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect

Similar question has been already asked here: Left Align Cells in UICollectionView

Community
  • 1
  • 1
almas
  • 7,090
  • 7
  • 33
  • 49