1

10個のエントリを持つ配列があります。UICollectionViewに各行に3つ表示して、次のようにします。

A B C
D E F
G H I
J

今、私は次のコードを使用しています

#pragma mark - UICollectionView Datasource

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{

}

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

- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView
{
    return [self.btnArray count];
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
     UICollectionViewCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];

    Buttons *btn = [self.btnArray objectAtIndex:(indexPath.section * indexPath.row)];
    NSURL* aURL = [NSURL URLWithString:btn.imagePath];
    NSData* data = [[NSData alloc] initWithContentsOfURL:aURL];

    cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithData:data]];
    return cell;
}

#pragma mark – UICollectionViewDelegateFlowLayout

// 1
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    CGSize retval =  CGSizeMake(75, 75);
    return retval;
}

// 3
- (UIEdgeInsets)collectionView:
(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
{
    return UIEdgeInsetsMake(50, 20, 50, 20);
}

しかし、私がヒットしたとき

 UICollectionViewCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];

エラーが発生します

NSInternalInconsistencyException', reason: 'could not dequeue a view of kind: UICollectionElementKindCell with identifier Cell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'

なにが問題ですか?

4

1 に答える 1

3

エラーが示すように、その識別子を持つセルの nib またはクラスを登録する必要があります。これは、ビューをセットアップするときに 1 回行います。

これら 2 つの方法については、UICollectionView のドキュメントを参照してください。

– registerClass:forCellWithReuseIdentifier:
– registerNib:forCellWithReuseIdentifier:
于 2013-03-08T15:50:10.267 に答える