首页 > 代码库 > cellForItemAtIndexPath没有调用

cellForItemAtIndexPath没有调用

前几天碰到cellForItemAtIndexPath这个数据源方法没有被调用。这是一个collectionView返回cell(item)的数据源方法。

它没有被调用的原因有下:

1.没有设置delegate

2.控制器没有遵守UICollectiondataSource协议

3.numberOfItemsInSection中返回值为0

4.这也是我碰到的情况:就是初始化collectionView时要传入一个flowLayout,然后在设置flowLayout.itemSize的数值不对(它不能为0),那么也会使cellForItemAtIndexPath不被调用。验证时可以给itemSize设一个固定值如(30,30),就可以知道是它的数据不对了。

cellForItemAtIndexPath没有调用