How to center align the cells of a UICollectionView?

前端 未结 18 2492
梦如初夏
梦如初夏 2020-11-28 01:33

I am currently using UICollectionView for the user interface grid, and it works fine. However, I\'d like to be enable horizontal scrolling. The grid supports 8

18条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 02:15

    You can use https://github.com/keighl/KTCenterFlowLayout like this:

    KTCenterFlowLayout *layout = [[KTCenterFlowLayout alloc] init];
    
    [self.collectionView setCollectionViewLayout:layout];
    

提交回复
热议问题