31

我正在尝试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

4 回答 4

77

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

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

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

页脚也有相应的方法。

于 2013-01-17T17:27:29.723 回答
6

Swift 3 和 4 中接受的答案:

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
    return CGSize(width: collectionView.frame.size.width, height: 250)
}
于 2017-11-22T20:28:11.680 回答
4

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

    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

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

于 2018-04-05T07:51:52.323 回答
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;
}
于 2013-01-17T17:16:43.157 回答