Fit given number of cells in uicollectionview per row

后端 未结 5 1477
生来不讨喜
生来不讨喜 2021-01-31 06:52

I have a collection view and I would like to have let\'s say 4 cells per row. I know that to accomplish this all I need to do is divide collectionview.frame.size.width

5条回答
  •  悲哀的现实
    2021-01-31 07:11

    (collectionView.frame.size.width-50)/4
    

    To account for the space, you can subtract it from the collection view frame width (subtracting 5*10).

提交回复
热议问题