菜鸟教程小白 发表于 2022-12-13 15:55:15

ios - 向 UITableViewCell 添加约束


                                            <p><p>我无法让约束在我的 <code>UITableViewCell</code> 上工作。该单元格当前有 2 个文本字段和一个带有图像的按钮。</p>

<p><strong>iPhone XStoryboard</strong></p>

<p> <img src="https://imgur.com/J0bcLW7.jpg" alt="iPhone X"/> </p>

<p>目前没有限制,无论我在哪个设备上测试单元格内容都不会改变位置。例如在 iPad 上它看起来像这样</p>

<p><strong>iPadStoryboard</strong></p>

<p> <img src="https://imgur.com/0mZRSHW.jpg" alt="iPad "/> </p>

<p>当我添加约束时,它看起来会起作用,但是当我运行应用程序时,内容就搞砸了。</p>

<p>以下是带有约束的屏幕截图,以及我正在使用的约束。</p>

<p><strong>带约束的 iPhone X 模拟器</strong></p>

<p> <img src="https://imgur.com/lCxrMyP.jpg" alt="iPhone X Simulator with constraints"/>
<img src="https://imgur.com/RSQYPel.jpg" alt="iPhone X Simulator with constraints"/> </p>

<p>谁能告诉我需要哪些特定的约束才能使它在所有设备上看起来都像这样?</p>

<p><strong>无限制的 iPhone X 模拟器</strong></p>

<p> <img src="https://imgur.com/OL5wiAd.jpg" alt="iPhone X Simulator without constraints "/> </p>

<p>我没有遇到应用程序其他部分的约束问题,但由于某种原因,单元格中的自动布局约束使我无法理解。</p>

<p>谢谢!</p>

<p>更新</p>

<p>我能够用这个问题的答案来解决这个问题 <a href="https://stackoverflow.com/questions/43319921/autolayout-is-ignored-in-custom-uitableviewcell" rel="noreferrer noopener nofollow">Autolayout is ignored in Custom UITableViewCell</a> </p>

<p>在那之后@leedex 建议的约束非常有效。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的 noteTextLabel 没有前导或尾随约束。前导约束应位于 superView ,尾随约束应位于按钮的左侧。</p>

<p>你的 flagButton 应该有顶部和尾部约束,它们都指向 superView。或者按钮可以有一个 centerY 约束和一个尾随约束,其中 centerY 约束与 superView 的相同,而尾随约束与 superView 相同。按钮也应该有宽度和高度限制。</p>

<p>你的 dateLabel 应该有前导、顶部、底部和尾部约束,其中前导到 superView,顶部到 noteTextLabel,底部到 superView,尾部到 flagButton。</p>

<p>这是一个示例屏幕截图,请注意尾随、顶部、前导和底部约束是如何可见的:</p>

<p> <a href="/image/1QM7B.png" rel="noreferrer noopener nofollow"><img src="/image/1QM7B.png" alt="enter image description here"/></a>
<a href="/image/SzLrA.png" rel="noreferrer noopener nofollow"><img src="/image/SzLrA.png" alt="enter image description here"/></a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 向 UITableViewCell 添加约束,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/49142143/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/49142143/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 向 UITableViewCell 添加约束