Autolayout:删除视图时相邻视图的后备约束

时间:2015-02-27 09:06:30

标签: ios uiview autolayout nslayoutconstraint

我试图在UICollectionReusableView(UICollectionView Header)上下文中进行此工作。

AutoLayoutExample

计算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:
  • 的代码以编程方式应用新的回退布局
  • 在故事板中设置常量为8且优先级较低的约束。

实现这一目标的最佳方式是什么?我已经看到了答案here,但如果有的话,我想收集更多的答案。

提前致谢!

1 个答案:

答案 0 :(得分:1)

取一个B的高度约束和A和B之间的垂直空间的IBOutlet并将其更改为0而不是删除视图

希望这能解决您的问题