0

我想将默认部分标题设置为UICollectionView。我使用了下面的代码,它崩溃了。

-viewDidLoad

[feedcollectionview registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"cell"];

-viewForSupplementaryElementOfKind

UICollectionReusableView *reusableview = nil;
  if (kind == UICollectionElementKindSectionHeader) {
        UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"HeaderView" forIndexPath:indexPath];
        [headerView setBackgroundColor:[UIColor redColor]];        
        reusableview=headerView;

谢谢

4

1 回答 1

0

在 ViewDidLoad Identifier 中不同的 viewForSupplementaryElementOfKind 你必须选择 @"cell" 或 @"HeaderView"

于 2016-02-26T06:09:00.127 回答