我有一个使用两个 UICollectionViews 设置的视图。这些视图中的每一个都有一个以不同大小支持它的数组。collection1 由 array1 支持,而 collection2 由 array2 支持。问题是,从 numberOfItemsInSection 为 collection1 返回的任何数字都应用于两个集合视图。
例如,如果 array1 的大小为 4,而 array2 的大小为 5,则两个集合都将显示 4 个元素。如果array1 的大小为5,array2 的大小为4,当我一直滚动collection2 时,它会调用cellForItemAtIndexPath,collection2 的itemIndex 为5,我得到一个NSRangeException。
如何让每个 collectionView 使用它自己的大小?
- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section;
{
if(view == self.colleciton1){
return self.array1.count;
} else if (view == self.collection2){
return self.array2.count;
}
return 0;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath;
{
if(cv == self.collection1){
CharacterCell *cell = [cv dequeueReusableCellWithReuseIdentifier:FIRST_CELL_IDENTIFIER forIndexPath:indexPath];
cell.label.text = self.array1[indexPath.item];
return cell;
} else if (cv == self.collection2){
EpisodeCell *cell = [cv dequeueReusableCellWithReuseIdentifier:SECOND_CELL_IDENTIFIER forIndexPath:indexPath];
cell.label.text = self.array2[indexPath.item];
return cell;
}
return nil;
}
我在一个项目中包含了一个 git repo 来说明这个问题。
git@github.com:civatrix/MultipleCollectionViews.git