UICollectionView with FlowLayout not scrolling when setting section insets

后端 未结 3 1717
萌比男神i
萌比男神i 2021-02-03 11:22

I am using a UICollectionView programmatically.

I\'ve set its frame as follows:

UICollectionView *collectionView = [[UICollectionView alloc] initWithFram         


        
3条回答
  •  庸人自扰
    2021-02-03 11:46

    I've encountered the same problem because I was initializing the elements of my collectionView (i.e. it's DataSource) in the viewWillAppear method.

    I finally add just a [self.collectionView reloadData]; and it works just fine!

    Maybe you're in the same case.

提交回复
热议问题