11
不会调用UICollectionReusableView方法
我希望我的部分中UICollectionView包含带有图片的标题。 我已按照以下步骤操作: 在情节提要中,分配了一个标题作为我的附件 UICollectionView 给它一个标识符 UICollectionReusableView为此创建了一个子类 在故事板上将自定义类分配给该类。 ImageView在标头配件上放一个 ImageView在.h文件的自定义类中为设置了出口 在实现了以下内容viewDidLoad: [self.collectionView registerClass:[ScheduleHeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:headerIdentifier]; -(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath { UICollectionReusableView *reusableview = nil; if (kind == UICollectionElementKindSectionHeader) { ScheduleHeaderView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:headerIdentifier forIndexPath:indexPath]; headerView.headerImageView.image = [UIImage imageNamed:@"blah.png"]; reusableview = headerView; } return reusableview; } …