菜鸟教程小白 发表于 2022-12-13 08:46:59

ios - 自动布局 : constraint that involves multiple items


                                            <p><p>例如,我希望将某个文本字段放置在导航栏下方,距离等于 superView 总高度的四分之一。这涉及三个项目:文本字段、顶部布局指南和 superView 。如何在 Interface Builder 中或通过编程创建这样的约束?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不可能只使用一个约束。相反,您需要在文本字段上方创建一个额外的 <code>UIView</code>。然后你可以设置以下约束:</p>

<ol>
<li>4 * extraView.height = containerView.height</li>
<li>extraView.top = topLayoutGuide</li>
<li>extraView.bottom = textField.top</li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 自动布局 : constraint that involves multiple items,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31163608/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31163608/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 自动布局 : constraint that involves multiple items