我在UICollectionView
有两个部分。我想在UICollectionView
中仅显示第一部分的部分标题。不在第 0 节中。
所以我试图在viewForSupplementaryElementOfKind
中返回nil
:section == 0
的方法并返回section == 1
的视图。
它崩溃并显示以下错误:
Assertion failure in -[UICollectionView _createPreparedSupplementaryViewForElementOfKind:atIndexPath:withLayoutAttributes:applyAttributes]:
这是我的补充视图代码。
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
UICollectionReusableView *sectionHeader = nil;
if (kind == UICollectionElementKindSectionHeader && indexPath.section == 1) {
sectionHeader = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"EventSectionHeader" forIndexPath:indexPath];
sectionHeader.layer.borderWidth = .5f;
sectionHeader.layer.borderColor = [UIColor colorWithRed:221.0 / 255.0 green:223.0 / 255.0 blue:220.0 / 255.0 alpha:1.0].CGColor;
}
return sectionHeader;
}
我发现在viewForSupplementaryElementOfKind:
方法中返回 nil 也会对其他人崩溃。其他答案建议删除该方法。
但是我只想显示特定部分的部分标题。如何实现仅一个部分的返回视图?谢谢。任何帮助将不胜感激。
编辑:
正如@san所说,我已经更新了代码以隐藏节标题。它有效。它隐藏标头。但是我仍然看到部分标题位置的空白区域。预期结果是,如果节标题被隐藏,则不应有空间。
更新的代码:
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
UICollectionReusableView *sectionHeader = nil;
if (kind == UICollectionElementKindSectionHeader) {
sectionHeader = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"EventSectionHeader" forIndexPath:indexPath];
sectionHeader.layer.borderWidth = .5f;
sectionHeader.layer.borderColor = [UIColor colorWithRed:221.0 / 255.0 green:223.0 / 255.0 blue:220.0 / 255.0 alpha:1.0].CGColor;
if (indexPath.section == 0) {
sectionHeader.hidden = YES;
}else {
sectionHeader.hidden = NO;
}
}
return sectionHeader;
}
我什至尝试按照@san所说为 sectionHeader 设置框架。但是没有运气。相同的结果。
终于,我找到了问题的答案。我错过了一些东西。无论如何,对不起其他用户。
正如@san所说,到目前为止,我在下面的方法中设置了标题高度和宽度。
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
但设置补充视图的帧大小不是正确的方法。后来我在flowLayout中找到了另一种方法,它可以帮助我设置页眉和页脚大小。
这对我来说真的很有效:
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
{
if (section == 0) {
return CGSizeZero;
}else {
return CGSizeMake(CGRectGetWidth(collectionView.bounds), 135);
}
}
更新:由于有人质疑我在评论中的技能,因此在上述方法中附加用于返回CGSizeZero的Apple文档链接。
collectionView:viewForSupplementaryElementOfKind:atIndexPath:
的文档指出:
此方法必须始终返回有效的视图对象。如果不希望在特定情况下使用补充视图,则布局对象不应为该视图创建属性。或者,可以通过将相应属性的隐藏属性设置为 YES 或将属性的 alpha 属性设置为 0 来隐藏视图。要在流程布局中隐藏页眉和页脚视图,还可以将这些视图的宽度和高度设置为 0。
考虑到您已经尝试将高度设置为零并将视图设置为隐藏,您应该UICollectionViewFlowLayout
子类并实现layoutAttributesForSupplementaryViewOfKind:atIndexPath:
检查 indexPath(就像您已经做的那样)并返回 nil
如果您不需要该特定补充视图的任何布局属性。
- (UICollectionViewLayoutAttributes *)layoutAttributesForSupplementaryViewOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
if([indexPath section] == 0)
{
return nil;
}
return [super layoutAttributesForSupplementaryViewOfKind:kind atIndexPath:indexPath];
}
文档清楚地说 -
返回值
已配置的补充视图对象。不得从此方法返回 nil。
所以你需要遵循——
此方法必须始终返回有效的视图对象。如果不希望在特定情况下使用补充视图,则布局对象不应为该视图创建属性。或者,可以通过将相应属性的隐藏属性设置为 YES 或将属性的 alpha 属性设置为 0 来隐藏视图。要在流程布局中隐藏页眉和页脚视图,还可以将这些视图的宽度和高度设置为 0。
谈到您的代码,下面的代码片段应该适合您:
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
UICollectionReusableView *sectionHeader = nil;
if (kind == UICollectionElementKindSectionHeader) {
sectionHeader = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"EventSectionHeader" forIndexPath:indexPath];
if(indexPath.section == 1)
{
sectionHeader.layer.borderWidth = .5f;
sectionHeader.layer.borderColor = [UIColor colorWithRed:221.0 / 255.0 green:223.0 / 255.0 blue:220.0 / 255.0 alpha:1.0].CGColor;
}
else
{
sectionHeader.frame = CGRectZero;
sectionHeader.hidden = YES;
}
}
return sectionHeader;
}
就我而言,我已经为部分提供了插图,因此它给了我空白空间因此,如果您已实现以下方法,请按以下方式执行
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
if <condition for which you want to hide section>{
return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
}else{
return UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)
}
}
您可以通过添加委托并使用以下代码来隐藏/显示可重UICollectionViewDelegateFlowLayout
标题部分
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section{
if (self.isForSearch) { //---> for hiding
return CGSizeMake(0,0);
}
else{//---> for showing
return ((UICollectionViewFlowLayout*)self.collectionChoosePlanView.collectionViewLayout).headerReferenceSize;
}
}
所以你可以隐藏/显示它