UICollectionView Layout Issue

前端 未结 15 1765
天涯浪人
天涯浪人 2020-12-24 00:17

I am using UICollectionView using the flow layout. I have made a custom UICollectionViewCell for the same. But on running the project the console k

15条回答
  •  悲哀的现实
    2020-12-24 00:59

    If you're loading a collectionView via a container view + UICollectionViewController, you may have set a height constraint on the container view which is constraining the height of the collection view itself. In my case, I found the collectionView.contentSize was taller than the constraint I had set on my container view.

    Obviously this is a bit of an edge case but just in case you have a similar setup, I figured I'd add this comment.

提交回复
热议问题