ios - UIView.layoutMargins 和 AlignmentRect 的区别
<p><p>我正在(再次)弄清楚如何为自定义 UIView 实例设置边距。据我记忆,我必须通过 alignmentRectInsets 方法设置 AlignmentRect 。但这不适用于自动布局。
在谷歌上搜索我发现还有一个名为 layoutMargins 的属性。</p>
<p>所以问题是 layoutMargins 和 alignmentRect 做什么?它们相互影响吗?完全不同的东西?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>layoutMargins</code> 确定 View 内的事物如何通过自动布局定位。通常这用于使对象与 View 边缘保持特定距离。</p>
<p><code>alignmentRectInsets</code> 用于告诉自定义 View 之外的对象如何与其对齐。例如,您可能有一个带有波浪形或倾斜顶部的 View 。将其他对象与 View 顶部对齐可能看起来不太正确,因此您可以在顶部对齐上设置一个插入来补偿。</p>
<p>您可能关心 <code>layoutMargins</code>。我实际上从未见过有人使用 <code>alignmentRectInsets</code>。</p></p>
<p style="font-size: 20px;">关于ios - UIView.layoutMargins 和 AlignmentRect 的区别,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34821354/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34821354/
</a>
</p>
页:
[1]