我试图在UICollectionReusableView(UICollectionView Header)上下文中进行此工作。
计算UILabels A , B 和 C 中字符串所需的高度,并将其设置为灰色视图的高度有点像这样:
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
{
....
CGFloat expectedHeightForLabelB = 0;
if (stringB.length > 0)
{
expectedHeightForLabelB = 8 + calculatedRequiredHeightForStringB;
}
....
CGFloat expectedHeaderHeight = expectedHeightForLabelA + expectedHeightForLabelB + expectedHeightForLabelC + 8
return CGSizeMake(collectionView.bounds.size.width, expectedHeaderHeight);
}
在
collectionView:viewForSupplementaryElementOfKind:atIndexPath:
中,我有一个条件
if (stringB.length == 0)
[headerView.labelB removeFromSuperView];
在这种情况下,我已经确定了灰色超视图的估计动态高度。我希望UILabels A 和 C 的回退垂直约束为8分。
我只能想到两种可能的方法(不确定是对还是错)。
collectionView:viewForSupplementaryElementOfKind:atIndexPath:
。实现这一目标的最佳方式是什么?我已经看到了答案here,但如果有的话,我想收集更多的答案。
提前致谢!
答案 0 :(得分:1)
取一个B的高度约束和A和B之间的垂直空间的IBOutlet并将其更改为0而不是删除视图
希望这能解决您的问题