CollectionView sizeForItemAtIndexPath never called

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

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

class PhrasesCompactCollectionViewController: UICollectionViewController
         


        
15条回答
  •  Happy的楠姐
    2020-12-24 11:43

    Just add: UICollectionViewDelegateFlowLayout

    class YourClass: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {}
    

提交回复
热议问题