美文网首页
UICollectionView header根据内容设置高度

UICollectionView header根据内容设置高度

作者: 神码 | 来源:发表于2019-12-26 17:50 被阅读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);
    }
    

    相关文章

      网友评论

          本文标题:UICollectionView header根据内容设置高度

          本文链接:https://www.haomeiwen.com/subject/rlsloctx.html