如何以编程方式在UICollectionView中启用/禁用节标题?

时间:2014-07-03 16:15:49

标签: ios uicollectionview uicollectionviewcell

如何以编程方式在UICollectionView中启用/禁用节标题?

可以在Storyboard(复选框)中轻松完成,但是如何在代码中完成?

4 个答案:

答案 0 :(得分:39)

您可以使用collectionView:layout:referenceSizeForHeaderInSection:的{​​{1}}方法并返回UICollectionViewDelegateFlowLayout,也可以相应地设置CGSizeMake(0,0)的{​​{1}}。

修改 headerReferenceSize实际上是storyboard用于显示/隐藏标题的属性。我添加了Storyboard文件中的相关行

使用部分复选框

UICollectionViewFlowLayout

使用部分复选框 关闭

headerReferenceSize

编辑#2:

来自the official docs

  

流布局中的每个部分都可以拥有自己的自定义页眉和页脚。要为视图配置页眉或页脚,必须将页眉或页脚的大小配置为非零。您可以通过实现适当的委托方法或将适当的值分配给headerReferenceSize和footerReferenceSize属性来完成此操作。如果页眉或页脚大小为0,则相应的视图不会添加到集合视图中。

答案 1 :(得分:11)

只需将您不想显示的标题的高度更改为0 ...

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
{
    if (section == 0) {
        return CGSizeZero;
    }else {
        return CGSizeMake(collectionView.frame.size.width,50);
    }
}

答案 2 :(得分:2)

无论是nil还是[UIView new]都没有同样的错误。最佳答案在How to change the UICollectionView footerview's height programatically

答案 3 :(得分:-2)

当你根本不想要一个标题出现时,在代表的

viewForSupplementaryElementOfKind

return [UIView new];

时只需kind == UICollectionElementKindSectionHeader:
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{   
    if (kind == UICollectionElementKindSectionHeader) {
       return [UIView new]; // Or even nil, I think it would work.
    }
    ...
    return /*something else that you want to return*/ ;
}