UICollectionView header根据内容设置高度

2019-12-26  本文已影响0人  神码

直接在collectionView referenceSizeForHeaderInSection方法中计算header内容的高度,其中getHeaderHeight为根据所有文字图片内容相加后得出的header高度

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section {
    if (section == 0) {
        return CGSizeMake(Screen_Width, [self getHeaderHeight]);
    } else {
        return CGSizeMake(Screen_Width, 65);
    }
    return CGSizeMake(0, 0);
}
上一篇下一篇

猜你喜欢

热点阅读