<tfoot id='lre7k'></tfoot>
      • <bdo id='lre7k'></bdo><ul id='lre7k'></ul>
      1. <small id='lre7k'></small><noframes id='lre7k'>

        <i id='lre7k'><tr id='lre7k'><dt id='lre7k'><q id='lre7k'><span id='lre7k'><b id='lre7k'><form id='lre7k'><ins id='lre7k'></ins><ul id='lre7k'></ul><sub id='lre7k'></sub></form><legend id='lre7k'></legend><bdo id='lre7k'><pre id='lre7k'><center id='lre7k'></center></pre></bdo></b><th id='lre7k'></th></span></q></dt></tr></i><div id='lre7k'><tfoot id='lre7k'></tfoot><dl id='lre7k'><fieldset id='lre7k'></fieldset></dl></div>
        <legend id='lre7k'><style id='lre7k'><dir id='lre7k'><q id='lre7k'></q></dir></style></legend>

        ios自动布局:以编程方式设置宽度约束

        时间:2023-09-09
          <i id='FeNyc'><tr id='FeNyc'><dt id='FeNyc'><q id='FeNyc'><span id='FeNyc'><b id='FeNyc'><form id='FeNyc'><ins id='FeNyc'></ins><ul id='FeNyc'></ul><sub id='FeNyc'></sub></form><legend id='FeNyc'></legend><bdo id='FeNyc'><pre id='FeNyc'><center id='FeNyc'></center></pre></bdo></b><th id='FeNyc'></th></span></q></dt></tr></i><div id='FeNyc'><tfoot id='FeNyc'></tfoot><dl id='FeNyc'><fieldset id='FeNyc'></fieldset></dl></div>

          <tfoot id='FeNyc'></tfoot>
          <legend id='FeNyc'><style id='FeNyc'><dir id='FeNyc'><q id='FeNyc'></q></dir></style></legend>

              <small id='FeNyc'></small><noframes id='FeNyc'>

                • <bdo id='FeNyc'></bdo><ul id='FeNyc'></ul>
                    <tbody id='FeNyc'></tbody>

                • 本文介绍了ios自动布局:以编程方式设置宽度约束的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在开发一个 ios 应用程序.我正在以编程方式将自动布局添加到 2 个标签.

                  I am working on an ios application. I am adding the auto-layout programmatically to 2 labels.

                  我需要添加一个约束使它们的宽度相等.

                  I need to add a constraint to make them equal width.

                  我知道如何通过使用来固定标签的宽度:

                  I know how to fix the width of a label by using :

                  constraint = [NSLayoutConstraint
                      constraintWithItem:myLabel
                               attribute:NSLayoutAttributeWidth
                              relatedBy:NSLayoutRelationEqual
                                toItem: nil
                             attribute:NSLayoutAttributeNotAnAttribute
                            multiplier:1.0f
                              constant:200.0f];
                  

                  这会将标签大小固定为常数.但是我有 2 个标签,我希望它们具有相同的大小,而不必设置常量.

                  That would fix the label size to a constant. But I have 2 labels and I want them to have equal size without having to set a constant.

                  推荐答案

                  原来我只需要执行以下操作:

                  It turned out I just have to do the following:

                  constraint = [NSLayoutConstraint
                      constraintWithItem:myLabel
                          attribute:NSLayoutAttributeWidth
                          relatedBy:NSLayoutRelationEqual
                            toItem: otherLabel
                         attribute:NSLayoutAttributeWidth
                        multiplier:1.0f
                          constant:0];
                  

                  这篇关于ios自动布局:以编程方式设置宽度约束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何使用 Autolayout 以编程方式将 UIView 居中在现有 UIView 之上? 下一篇:具有两个不等式约束的歧义

                  相关文章

                    • <bdo id='nshHJ'></bdo><ul id='nshHJ'></ul>
                  1. <small id='nshHJ'></small><noframes id='nshHJ'>

                  2. <i id='nshHJ'><tr id='nshHJ'><dt id='nshHJ'><q id='nshHJ'><span id='nshHJ'><b id='nshHJ'><form id='nshHJ'><ins id='nshHJ'></ins><ul id='nshHJ'></ul><sub id='nshHJ'></sub></form><legend id='nshHJ'></legend><bdo id='nshHJ'><pre id='nshHJ'><center id='nshHJ'></center></pre></bdo></b><th id='nshHJ'></th></span></q></dt></tr></i><div id='nshHJ'><tfoot id='nshHJ'></tfoot><dl id='nshHJ'><fieldset id='nshHJ'></fieldset></dl></div>

                    1. <tfoot id='nshHJ'></tfoot>
                      <legend id='nshHJ'><style id='nshHJ'><dir id='nshHJ'><q id='nshHJ'></q></dir></style></legend>