ios - 自动布局:删除 View 时相邻 View 的后备约束
<p><p>我正在尝试在 UICollectionReusableView (UICollectionView Header) 上下文中进行这项工作。</p>
<p> <img src="/image/D7Pqu.png" alt="AutoLayoutExample"/> </p>
<p>UILabels <em>A</em>、<em>B</em> 和 <em>C</em> 中的字符串所需的高度被计算并设置为灰色 View 的高度,有点像这样: </p>
<pre><code>- (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);
}
</code></pre>
<p>在 <code>
collectionView:viewForSupplementaryElementOfKind:atIndexPath:</code>,我有一个条件</p>
<pre><code>if (stringB.length == 0)
;
</code></pre>
<p>在这种情况下,我已经解决了灰色 superView 的估计动态高度。我想要的是 UILabel <em>A</em> 和 <em>C</em> 有一个 8 pts 的后备垂直约束。</p>
<p>我只能想到 2 种可能的(不确定是对还是错)方法来实现这一点。</p>
<ul>
<li>以编程方式在 <code> 处的代码中应用新的后备布局
collectionView:viewForSupplementaryElementOfKind:atIndexPath:</code>.</li>
<li>在 Storyboard 中设置具有常量 8 和更低优先级的约束。</li>
</ul>
<p>实现这一目标的正确或最佳方法是什么?我看到了答案<a href="https://stackoverflow.com/a/22388305/2853872" rel="noreferrer noopener nofollow">here</a>但如果有的话,我想收集更强大的输入。</p>
<p>提前致谢!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>取一个 B 的高度约束和 A 和 B 之间的垂直空间的 IBOutlet 并将其更改为 0 而不是删除 View </p>
<p>希望这能解决你的问题</p></p>
<p style="font-size: 20px;">关于ios - 自动布局:删除 View 时相邻 View 的后备约束,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28761136/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28761136/
</a>
</p>
页:
[1]