CollectionView sizeForItemAtIndexPath never called

前端 未结 15 1401
一整个雨季
一整个雨季 2020-12-24 11:17

This is driving me crazy! I have a UICollectionViewController as shown below:

class PhrasesCompactCollectionViewController: UICollectionViewController
         


        
15条回答
  •  天涯浪人
    2020-12-24 11:51

    You need to specify that you implement the protocol UICollectionViewDelegateFlowLayout in your class declaration.

    class PhrasesCompactCollectionViewController: UICollectionViewController, UICollectionViewDelegateFlowLayout

提交回复
热议问题