OStack程序员社区-中国程序员成长平台

标题: ios - 自动布局:删除 View 时相邻 View 的后备约束 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:30
标题: ios - 自动布局:删除 View 时相邻 View 的后备约束

我正在尝试在 UICollectionReusableView (UICollectionView Header) 上下文中进行这项工作。

AutoLayoutExample

UILabels ABC 中的字符串所需的高度被计算并设置为灰色 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 AC 有一个 8 pts 的后备垂直约束。

我只能想到 2 种可能的(不确定是对还是错)方法来实现这一点。

实现这一目标的正确或最佳方法是什么?我看到了答案here但如果有的话,我想收集更强大的输入。

提前致谢!



Best Answer-推荐答案


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

希望这能解决你的问题

关于ios - 自动布局:删除 View 时相邻 View 的后备约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28761136/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4