我有一个UICollectionViewController,其数组大小为20作为数据源。
但是当我运行它时,我只看到8个细胞。 NSLog显示计数仍为20。
这还不够吗?
- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section;
{
return self.datasource.count;
}
答案 0 :(得分:0)
您在以下两种委托方法中设置了什么?
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return TotalItems / NoOfItemsPerSection;
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return NoOfItemsPerSection;
}