UICollectionView显示的单元格太少

时间:2012-11-17 11:12:30

标签: xcode ios6 uicollectionview

我有一个UICollectionViewController,其数组大小为20作为数据源。

但是当我运行它时,我只看到8个细胞。 NSLog显示计数仍为20。

这还不够吗?

- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section;

{

return self.datasource.count;

}

1 个答案:

答案 0 :(得分:0)

您在以下两种委托方法中设置了什么?

   - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
    {
        return TotalItems / NoOfItemsPerSection;
    }

    - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
    {
        return NoOfItemsPerSection;
    }