动态更改UICollectionReuseableView(集合节标题)的高度

时间:2013-01-17 16:48:50

标签: objective-c ios6 xcode4.5

我正在尝试动态设置UICollectionView的节标题的高度,但是使用下面的代码,我没有看到任何变化。视图是使用正确的项目绘制的,但高度不会让步。很抱歉,如果这是一个重复的问题,但我似乎无法找到与UICollectionView对象相关的任何内容。提前谢谢。

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView
           viewForSupplementaryElementOfKind:(NSString *)kind
                                 atIndexPath:(NSIndexPath *)indexPath
{
    PhotoVideoHeaderCell *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader
                                                                          withReuseIdentifier:@"videoHeaderView"
                                                                                 forIndexPath:indexPath];
    if (indexPath.section == 0) {
        // photos
        [headerView setSection:@"Photo"];
    } else {
        [headerView.VehicleDetailView removeFromSuperview];
        CGRect frame = headerView.frame;
        frame.size.height = 60;
        [headerView setFrame:frame];
        [headerView setNeedsDisplay];
        [headerView setBackgroundColor:[UIColor grayColor]];
        [headerView setSection:@"Video"];
    }

    return headerView;
}

4 个答案:

答案 0 :(得分:70)

假设您正在使用流布局,您的委托应该实现以下功能:

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section;

您可以为每个标题返回不同的大小。在水平滚动集合视图中,仅使用宽度。在垂直滚动的中,仅使用高度。未使用的值将被忽略 - 您的视图将始终被拉伸以分别填充水平/垂直集合视图的整个高度/宽度。

页脚也有相应的方法。

答案 1 :(得分:4)

Swift 3和4中接受的答案:

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
    return CGSize(width: collectionView.frame.size.width, height: 250)
}

答案 2 :(得分:2)

好吧,我不喜欢使用嘈杂的委托方法,而是使用它:(只有在你有一个独特的标题大小时才有效)

    let layout = self.collectionView.collectionViewLayout as! UICollectionViewFlowLayout // Assuming you use the default flow layout 
    layout.headerReferenceSize = CGSize(width: 42, height: 42) //Set the header size

也适用于itemSize:

    layout.itemSize = CGSize(width: 42, height: 42) //Set a custom item size

这对于设置相对于屏幕宽度的项目大小非常有用。

答案 3 :(得分:1)

尝试这样的事情:

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
    UICollectionReusableView *header = [siteMapCollection dequeueReusableSupplementaryViewOfKind: UICollectionElementKindSectionHeader withReuseIdentifier: @"headerID" forIndexPath: indexPath];
    NSString *headerText = @"This is my header";
    UIFont *labFont = [UIFont fontWithName: @"HelveticaNeue-CondensedBold" size: 20.0];
    CGSize textSize = [dummyText sizeWithFont: labFont];
    UILabel *headerLabel = [[UILabel alloc] initWithFrame: CGRectMake(0, header.frame.size.height - (textSize.height + 12), header.frame.size.width, textSize.height + 8)];
    [headerLabel setFont: labFont];

    [header addSubview: headerLabel];

    return header;
}