我正在尝试在 UICollectionReusableView (UICollectionView Header) 上下文中进行这项工作。
UILabels A、B 和 C 中的字符串所需的高度被计算并设置为灰色 View 的高度,有点像这样:
- (CGSize)collectionViewUICollectionView *)collectionView layoutUICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSectionNSInteger)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];
在这种情况下,我已经解决了灰色 super View 的估计动态高度。我想要的是 UILabel A 和 C 有一个 8 pts 的后备垂直约束。
我只能想到 2 种可能的(不确定是对还是错)方法来实现这一点。
- 以编程方式在
处的代码中应用新的后备布局
collectionView:viewForSupplementaryElementOfKind:atIndexPath: .
- 在 Storyboard 中设置具有常量 8 和更低优先级的约束。
实现这一目标的正确或最佳方法是什么?我看到了答案here但如果有的话,我想收集更强大的输入。
提前致谢!
Best Answer-推荐答案 strong>
取一个 B 的高度约束和 A 和 B 之间的垂直空间的 IBOutlet 并将其更改为 0 而不是删除 View
希望这能解决你的问题
关于ios - 自动布局:删除 View 时相邻 View 的后备约束,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28761136/
|