<legend id='7z99M'><style id='7z99M'><dir id='7z99M'><q id='7z99M'></q></dir></style></legend>

    <small id='7z99M'></small><noframes id='7z99M'>

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

        iOS - 查找视图的顶部约束?

        时间:2023-09-10

      1. <tfoot id='riQSf'></tfoot>
      2. <small id='riQSf'></small><noframes id='riQSf'>

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

                • 本文介绍了iOS - 查找视图的顶部约束?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我试图在代码中找到视图的顶部约束.故事板中添加了顶部约束,我不想使用 IBOutlet.

                  I am trying to find the top constraint of the view in code. The top constraint is added in storyboard, and I don't want to use an IBOutlet.

                  在以下代码中记录 firstAttribute 的值似乎总是返回 NSLayoutAttributeHeight 类型的约束.知道如何在代码中可靠地找到视图的最高约束吗?

                  Logging the value of the firstAttribute in the following code seems to always return a constraint of type NSLayoutAttributeHeight. Any idea how I could reliably find a top constraint of a view in code?

                  NSLayoutConstraint *topConstraint;
                  
                  for (NSLayoutConstraint *constraint in self.constraints) {
                      if (constraint.firstAttribute == NSLayoutAttributeTop) {
                          topConstraint = constraint;
                          break;
                      }
                  }
                  

                  推荐答案

                  您应该遍历 self.superview.constraints,而不是遍历 self.constraints.

                  Instead of iterating through self.constraints, you should iterate through self.superview.constraints.

                  self.constraints 仅包含与视图相关的约束(例如高度和宽度约束).

                  The self.constraints only contain constraints related to just the view (e.g. height and width constraints).

                  下面是代码示例:

                  - (void)awakeFromNib
                  {
                    [super awakeFromNib];
                  
                    if (!self.topConstraint) {
                      [self findTopConstraint];
                    }
                  }
                  
                  - (void)findTopConstraint
                  {
                    for (NSLayoutConstraint *constraint in self.superview.constraints) {
                      if ([self isTopConstraint:constraint]) {
                        self.topConstraint = constraint;
                        break;
                      }
                    }
                  }
                  
                  - (BOOL)isTopConstraint:(NSLayoutConstraint *)constraint
                  {
                    return  [self firstItemMatchesTopConstraint:constraint] ||
                            [self secondItemMatchesTopConstraint:constraint];
                  }
                  
                  - (BOOL)firstItemMatchesTopConstraint:(NSLayoutConstraint *)constraint
                  {
                    return constraint.firstItem == self && constraint.firstAttribute == NSLayoutAttributeTop;
                  }
                  
                  - (BOOL)secondItemMatchesTopConstraint:(NSLayoutConstraint *)constraint
                  {
                    return constraint.secondItem == self && constraint.secondAttribute == NSLayoutAttributeTop;
                  }
                  

                  这篇关于iOS - 查找视图的顶部约束?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:iOS 8 自动高度单元格在第一次加载时高度不正确 下一篇:自动布局和程序约束:如何处理多次触发的 updateConstraints?

                  相关文章

                  <tfoot id='4WTuQ'></tfoot>
                    <bdo id='4WTuQ'></bdo><ul id='4WTuQ'></ul>
                  <i id='4WTuQ'><tr id='4WTuQ'><dt id='4WTuQ'><q id='4WTuQ'><span id='4WTuQ'><b id='4WTuQ'><form id='4WTuQ'><ins id='4WTuQ'></ins><ul id='4WTuQ'></ul><sub id='4WTuQ'></sub></form><legend id='4WTuQ'></legend><bdo id='4WTuQ'><pre id='4WTuQ'><center id='4WTuQ'></center></pre></bdo></b><th id='4WTuQ'></th></span></q></dt></tr></i><div id='4WTuQ'><tfoot id='4WTuQ'></tfoot><dl id='4WTuQ'><fieldset id='4WTuQ'></fieldset></dl></div>
                • <legend id='4WTuQ'><style id='4WTuQ'><dir id='4WTuQ'><q id='4WTuQ'></q></dir></style></legend>
                  1. <small id='4WTuQ'></small><noframes id='4WTuQ'>