7

我有一个使用两个 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

4

3 回答 3

20

问题是我为每个集合使用了相同的布局对象。回想起来这是有道理的,但是您必须确保为每个 collectionView 创建不同的布局。

于 2012-10-12T15:05:08.533 回答
5

使用 ContainerViews 并为每个 UICollectionView 有两个单独的 UICollectionView 控制器可能会更容易

于 2013-01-07T21:53:20.540 回答
1

你所拥有的应该工作。self.colleciton1 和 self.collection2 是 IBOutlets 吗?如果是这样,您能否再次检查它们是否正确连接?

于 2012-10-12T01:07:23.563 回答