33

我在项目的自动布局方面遇到问题xcode 5。我在内部使用带有导航控制器的普通视图控制器。我MKMapView在上半部分有一个UITableView,在下半部分有一个。我正在使用storyboards,并且已经配置了原型UITableViewCell,但是我正在通过代码添加约束。我已经仔细检查了原型中的每个控件,并没有看到那里配置了任何约束。当我为UITableViewCell. 我在单元格中有以下代码:

-(void)updateConstraints {
    [super updateConstraints];
    //first remove old constraints
    [self removeConstraints:self.constraints];
    [self.nameLabel removeConstraints:self.nameLabel.constraints];
    [self.addressLabel removeConstraints:self.nameLabel.constraints];
    [self.rentableSquareFeetLabel removeConstraints:self.rentableSquareFeetLabel.constraints];
    [self.lastSaleAmountLabel removeConstraints:self.lastSaleAmountLabel.constraints];
    [self.lastSaleDateLabel removeConstraints:self.lastSaleAmountLabel.constraints];
    [self.thumbnailImageView removeConstraints:self.thumbnailImageView.constraints];

    //then set up constraints
    NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings(_thumbnailImageView, _nameLabel, _rentableSquareFeetLabel, _lastSaleAmountLabel, _addressLabel, _lastSaleDateLabel);
    [self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[_thumbnailImageView(60)]-[_nameLabel(<=200)]-(>=8)-[_rentableSquareFeetLabel]-(>=8)-[_lastSaleAmountLabel]|" options:0 metrics:nil views:viewsDictionary]];
    [self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[_nameLabel]-(-4)-[_addressLabel]" options:NSLayoutFormatAlignAllLeading metrics:nil views:viewsDictionary]];
    [self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[_lastSaleAmountLabel]-(-4)-[_lastSaleDateLabel]" options:NSLayoutFormatAlignAllLeading metrics:nil views:viewsDictionary]];
}

我在调试控制台中得到以下信息。异常由第一行 addConstraints 触发。如果我只是继续这些,那么最终一切都会显示出来,因为看起来 xcode 正在选择打破正确的约束:

2013-09-25 15:07:14.169 PECProperties[32381:a0b] Unable to simultaneously satisfy constraints.  Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)  (
    "<NSIBPrototypingLayoutConstraint:0x9d56c70 'IB auto generated at build time for view with fixed frame' H:|-(0)-[UIImageView:0x9d558f0](LTR)   (Names: '|':UITableViewCellContentView:0x9d55620 )>",
    "<NSIBPrototypingLayoutConstraint:0x9d56d20 'IB auto generated at build time for view with fixed frame' H:[UIImageView:0x9d558f0(60)]>",
    "<NSIBPrototypingLayoutConstraint:0x9d56d80 'IB auto generated at build time for view with fixed frame' H:|-(78)-[UILabel:0x9d559e0](LTR)   (Names: '|':UITableViewCellContentView:0x9d55620 )>",
    "<NSLayoutConstraint:0x9d53830 H:[UIImageView:0x9d558f0]-(NSSpace(8))-[UILabel:0x9d559e0]>" )

Will attempt to recover by breaking constraint  <NSIBPrototypingLayoutConstraint:0x9d56d80 'IB auto generated at build time for view with fixed frame' H:|-(78)-[UILabel:0x9d559e0](LTR)   (Names: '|':UITableViewCellContentView:0x9d55620 )>

Break on objc_exception_throw to catch this in the debugger. The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.

第三个 NSIBPrototypingLayoutConstraint 显示了视图边缘和标签之间的 78 个点。那是原型大致定位的位置(如果我在原型中移动它,我会在调试控制台中看到约束的变化),但这与我自己的图像视图和标签之间的“标准”距离约束相冲突.

我尝试translatesAutoresizingMaskIntoConstraints=NO在视图控制器中 设置cellForRowAtIndexPath,但这似乎也无济于事。如何修复布局?

4

1 回答 1

79

这里有几件事要介绍:

  1. 您遇到的NSIBPrototypingLayoutConstraint约束(以及导致异常的约束)由 Interface Builder 自动生成,以使您的 Storyboard 或 XIB 视图布局明确。这样做非常偷偷摸摸,但它会自动添加所需的最小约束,以便完全指定每个模棱两可的视图的位置和大小。这是对 Xcode 4 的更改,因为在 Xcode 4 中,您不能在 Interface Builder 中使用模棱两可的布局。使用 Xcode 5 及更高版本您可以,但是如果您的布局在编译时不明确,IB 将为您自动生成这些约束。

    解决此问题的方法是在 Interface Builder 中添加所需的最小约束,以便完全指定每个视图的位置和大小,然后选择每个不需要的约束,转到右侧边栏的属性检查器,然后选中占位符旁边的框- 在构建时删除

    Xcode 6 中约束占位符复选框的屏幕截图。

    此复选框不仅会删除您添加的约束,而且最重要的是它会阻止自动生成的 IB 约束取而代之!(正如您可以想象的那样,当您在 IB 中有多个视图并希望在代码中管理所有约束时,这是非常乏味的。因此,您可能希望避免将 IB 完全用于您打算在其中实现 Auto 的视图层次结构以编程方式布局。)

    Placeholder 约束和 Uninstalled 约束有什么区别?这是我的自适应自动布局演讲(视频)PDF 幻灯片)中比较两者的幻灯片:

    占位符约束和卸载约束之间的比较。

  2. updateConstraints中,您不想删除约束并像在那里一样重新添加它们。为什么不?从本质上讲,这对性能来说很糟糕,我已经与 Apple 工程师确认这不是一个好主意。有关更多详细信息,请参阅我在此处发布的问题/答案以及此答案。为了防止多次添加约束,请使用布尔标志(例如hasSetupConstraints),一旦您第一次设置约束,就设置为 YES,如果updateConstraints再次调用,如果没有新约束,您可以立即返回添加。请参阅此问题以进行进一步讨论。

  3. 您用来删除约束的代码可能无法完全正常工作。这是因为[view removeConstraints:view.constraints]只会删除已添加到view的约束——请记住,可以将约束添加到它们约束的视图的任何公共父视图中——并且添加到的约束view可能不是唯一影响布局的约束view!如果您需要删除许多约束,您应该在属性中存储对每个约束的引用(例如,包含 NSLayoutConstraint 实例的 NSArray 属性),然后使用 NSLayoutConstraint 上的 API 或PureLayout open-源库. 您应该只停用/删除尽可能少的约束,因为这样做的计算成本很高。另一方面,更改constant任何约束的 是非常有效和鼓励的,您不需要删除或重新添加约束来做到这一点。

于 2013-09-26T05:24:31.977 回答