153

以下是我在调试区域收到的错误消息。它运行良好,除了我收到此错误之外没有任何问题。这会阻止苹果接受该应用程序吗?我如何解决它?

2012-07-26 01:58:18.621 Rolo[33597:11303] 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) 
(
    "<NSAutoresizingMaskLayoutConstraint:0x887d630 h=--& v=--& V:[UIButtonLabel:0x886ed80(19)]>",
    "<NSAutoresizingMaskLayoutConstraint:0x887d5f0 h=--& v=--& UIButtonLabel:0x886ed80.midY == + 37.5>",
    "<NSAutoresizingMaskLayoutConstraint:0x887b4b0 h=--& v=--& V:[UIButtonLabel:0x72bb9b0(19)]>",
    "<NSAutoresizingMaskLayoutConstraint:0x887b470 h=--& v=--& UIButtonLabel:0x72bb9b0.midY == - 0.5>",
    "<NSLayoutConstraint:0x72bf860 V:[UILabel:0x72bf7c0(17)]>",
    "<NSLayoutConstraint:0x72c2430 UILabel:0x72bfad0.top == UILabel:0x72bf7c0.top>",
    "<NSLayoutConstraint:0x72c2370 UILabel:0x72c0270.top == UILabel:0x72bfad0.top>",
    "<NSLayoutConstraint:0x72c22b0 V:[UILabel:0x72bf7c0]-(NSSpace(8))-[UIButton:0x886efe0]>",
    "<NSLayoutConstraint:0x72c15b0 V:[UILabel:0x72c0270]-(NSSpace(8))-[UIRoundedRectButton:0x72bbc10]>",
    "<NSLayoutConstraint:0x72c1570 UIRoundedRectButton:0x72bbc10.baseline == UIRoundedRectButton:0x7571170.baseline>",
    "<NSLayoutConstraint:0x72c21f0 UIRoundedRectButton:0x7571170.top == UIButton:0x886efe0.top>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x72bf860 V:[UILabel:0x72bf7c0(17)]>

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.
4

17 回答 17

293

我建议调试并找到哪个约束是“你不想要的”。假设您有以下问题:

在此处输入图像描述

始终的问题是如何找到以下约束和视图。

有两种解决方案如何做到这一点:

  1. DEBUG VIEW HIERARCHY (不推荐这种方式)

由于您知道在哪里可以找到意外约束 (PBOUserWorkDayHeaderView),因此有一种方法可以很好地做到这一点。让我们在红色矩形中找到UIView和。NSLayoutConstraint因为我们知道他们在内存中的 id,所以这很容易。

  • 使用Debug View Hierarchy停止应用程序:

在此处输入图像描述

  • 找到合适的 UIView:

在此处输入图像描述

  • 接下来就是找到我们关心的NSLayoutConstraint:

在此处输入图像描述

如您所见,内存指针是相同的。所以我们知道现在发生了什么。此外,您可以NSLayoutConstraint在视图层次结构中找到。由于它在 View 中被选中,它也在 Navigator 中被选中。

在此处输入图像描述

如果您需要,您还可以使用地址指针在控制台上打印它:

(lldb) po 0x17dce920
<UIView: 0x17dce920; frame = (10 30; 300 24.5); autoresize = RM+BM; layer = <CALayer: 0x17dce9b0>>

您可以对调试器指向您的每个约束执行相同的操作:-) 现在您决定如何处理它。

  1. 更好地打印 (我真的推荐这种方式,这是 Xcode 7 的)

    • 为视图中的每个约束设置唯一标识符:

在此处输入图像描述

  • 创建简单的扩展NSLayoutConstraint

斯威夫特

extension NSLayoutConstraint {

    override public var description: String {
        let id = identifier ?? ""
        return "id: \(id), constant: \(constant)" //you may print whatever you want here
    }
}

目标-C

@interface NSLayoutConstraint (Description)

@end

@implementation NSLayoutConstraint (Description)

-(NSString *)description {
    return [NSString stringWithFormat:@"id: %@, constant: %f", self.identifier, self.constant];
}

@end
  • 再次构建它,现在您有了更多可读的输出:

在此处输入图像描述

  • 一旦你得到你的,你可以在你的Find Navigatorid中简单地点击它:

在此处输入图像描述

  • 并迅速找到它:

在此处输入图像描述

如何简单地解决这种情况?

  • 尝试将优先级更改999为破坏约束。
于 2015-05-07T09:09:46.640 回答
110

您遇到的问题是 NSAutoresizingMaskLayoutConstraints 不应该在那里。这是旧的弹簧和支柱系统。要摆脱它,请在您要约束的每个视图上运行此方法:

[view setTranslatesAutoresizingMaskIntoConstraints:NO];
于 2012-08-24T11:53:27.630 回答
29

请注意,不要在同一方向和类型上使用多个约束。

例如: 尾随的垂直约束 = 15,另一个是 >= 10。

有时,Xcode 会创建一些您没有注意到的约束。你必须摆脱多余的约束,日志警告肯定会消失。

在此处输入图像描述

另外,您可以直接从日志中读取和检测某些特定原因:

NSLayoutConstraint:0xa338390 V:|-(15)-[UILabel:0xa331260](名称:'|':UILabel:0xa330270)>

我们可以将其解读为 UILabel 约束中的问题,它导致垂直约束的长度为 15pt。

NSLayoutConstraint:0x859ab20 H:-(13)-|[UIView:0x85a8fb0]...

这将是尾随水平约束等。

于 2013-10-29T21:15:43.947 回答
6

我很难弄清楚是什么限制导致了这个错误。这是一种更简单的方法。

我正在使用 Xcode 6.1.1

  1. “Command + A”选择所有的UILabels,UIImages等。
  2. 点击 Editor -> Pin > (Select...) to Superview
  3. 再次单击编辑器 -> 解决自动布局问题 -> 添加缺少的约束或重置为建议的约束。这取决于你的情况。
于 2015-02-22T14:11:23.683 回答
6

我抛出了很多这样的异常,我发现解决它们的最快和最简单的方法是在异常中找到唯一值,然后在情节提要源代码中搜索这些值。这有助于我找到导致问题的实际视图和约束(我在所有视图上使用有意义的 userLabels,这使得跟踪约束和视图变得更加容易)......

因此,使用上述例外情况,我将在 xcode(或其他编辑器)中将情节提要作为“源代码”打开并寻找我能找到的东西......

<NSLayoutConstraint:0x72bf860 V:[UILabel:0x72bf7c0(17)]> 

.. 这看起来像是对值为 (17) 的 UILabel 的垂直 (V) 约束。

浏览我也发现的异常

<NSLayoutConstraint:0x72c22b0 V:[UILabel:0x72bf7c0]-(NSSpace(8))-[UIButton:0x886efe0]>

看起来 UILabel(0x72bf7c0) 接近 UIButton(0x886efe0) 并具有一些垂直间距 (8)..

希望这足以让我在故事板源代码中找到特定的视图(可能最初通过在文本中搜索“17”),或者至少找到一些可能的候选者。从那里我应该能够真正弄清楚这些视图在情节提要中哪些视图,这将使识别问题变得更加容易(寻找“重复的”固定或与尺寸限制冲突的固定)。

于 2014-03-24T23:15:39.160 回答
6

快速使用此代码

view.translatesAutoresizingMaskIntoConstraints = false
于 2016-02-22T11:55:15.627 回答
5

我遇到了这个问题,因为我的.xib文件使用了自动布局。

在文件检查器中,第一个选项卡。取消勾选“使用自动布局”解决了这个问题。

自动布局文件检查器

于 2013-05-05T17:27:38.847 回答
5

这是我的经验和解决方案。我没碰过代码

  1. 选择视图(UILabel、UIImage 等)
  2. Editor > Pin > (Select...) to Superview
  3. 编辑器 > 解决自动布局问题 > 添加缺少的约束
于 2014-03-22T21:13:44.150 回答
2

我遵循了每个搜索查询的 SO 问题和答案。但它们都与特定的相关。

基本上,我的意思是在你写下一种格式(可能是一种简单的格式)之前,它会给你一个警告。

从 iOS 8.0 开始,默认视图是大小类。即使您禁用大小类,它仍然会包含一些自动布局约束。

因此,如果您打算使用 VFL 通过代码设置约束。然后你必须照顾一个下面的线。

// Remove constraints if any.
[self.view removeConstraints:self.view.constraints];

我在 SO 中进行了很多搜索,但解决方案在于Apple Sample Code

因此,您必须在计划添加新约束之前删除默认约束。

于 2015-02-13T08:17:09.560 回答
1

对我来说,这个问题的主要原因是我忘记AutoLayoutXib编辑器中取消选中。事实上,我对XIBin 代码做了很多调整。

于 2014-10-29T21:25:10.447 回答
1

上述答案都对我的情况没有帮助。我正在运行 XCode 10.1 并在模拟器上为“iPad(第 5 代)”测试我的应用程序。模拟器运行 iOS 12.1。

我的故事板中有一个简单的根视图,有两个 UITextField 子视图。故事板中根本没有使用任何约束。而且我在应用程序或情节提要中没有 UIButtonBarView 对象。

当应用程序启动并放置根视图时,不会打印任何消息。旋转模拟设备时无。

但是在模拟器中,当我单击其中一个文本字段时,键盘扩展会从屏幕底部出现,尽管不是全键盘,它似乎从未出现在模拟器中。但是在终端上打印出以下内容:

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) 
(
"<NSAutoresizingMaskLayoutConstraint:0x6000034e7700 h=--& v=--& UIKeyboardAssistantBar:0x7f9c7d714af0.height == 0   (active)>",
"<NSLayoutConstraint:0x6000034aba20 V:|-(0)-[_UIUCBKBSelectionBackground:0x7f9c7d51ec70]   (active, names: '|':_UIButtonBarButton:0x7f9c7d51de40 )>",
"<NSLayoutConstraint:0x6000034aba70 _UIUCBKBSelectionBackground:0x7f9c7d51ec70.bottom == _UIButtonBarButton:0x7f9c7d51de40.bottom   (active)>",
"<NSLayoutConstraint:0x6000034fb3e0 V:|-(0)-[_UIButtonBarStackView:0x7f9c7d715880]   (active, names: '|':UIKeyboardAssistantBar:0x7f9c7d714af0 )>",
"<NSLayoutConstraint:0x6000034fb750 V:[_UIButtonBarStackView:0x7f9c7d715880]-(0)-|   (active, names: '|':UIKeyboardAssistantBar:0x7f9c7d714af0 )>",
"<NSLayoutConstraint:0x6000034abc00 'UIButtonBar.maximumAlignmentSize' _UIButtonBarButton:0x7f9c7d51de40.height == UILayoutGuide:0x600002ef4e00'UIViewLayoutMarginsGuide'.height   (active)>",
"<NSLayoutConstraint:0x6000034d7cf0 'UIView-bottomMargin-guide-constraint' V:[UILayoutGuide:0x600002ef4e00'UIViewLayoutMarginsGuide']-(9)-|   (active, names: '|':_UIButtonBarStackView:0x7f9c7d715880 )>",
"<NSLayoutConstraint:0x6000034d7c50 'UIView-topMargin-guide-constraint' V:|-(10)-[UILayoutGuide:0x600002ef4e00'UIViewLayoutMarginsGuide']   (active, names: '|':_UIButtonBarStackView:0x7f9c7d715880 )>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x6000034aba70 _UIUCBKBSelectionBackground:0x7f9c7d51ec70.bottom == _UIButtonBarButton:0x7f9c7d51de40.bottom   (active)>

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.

在我看来,所有这一切都与我的应用程序中的任何内容无关,并且与 Apple 如何创建自己的键盘视图有关,即使我的小扩展声明与它相结合。

所以问题仍然存在,作为应用程序开发人员,我是否有责任做一些事情(假设这是一堆值得关注的事情)还是只是苹果自己的问题/错误?

FWIW,在模拟较新的 iPad 型号时不会出现此约束问题消息,例如 iPad Pro 12.9 英寸(第 3 代)。但是在模拟 iPad Pro 9.7 英寸时确实会显示该消息。所有人都声称他们正在运行 iOS 12.1。

于 2019-02-13T02:19:31.787 回答
1
 for(UIView *view in [self.view subviews]) {
    [view setTranslatesAutoresizingMaskIntoConstraints:NO];
}

这帮助我抓住了导致问题的观点。

于 2015-10-29T12:32:02.103 回答
1

我遇到了同样的错误,但仅在特定视图上,当我触摸第一个文本字段,然后触摸下一个文本字段时。

我正在为 iOS 13.4 编写 SwiftUI

 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. 
    (
        "<NSLayoutConstraint:0x2809b6760 'assistantHeight' TUISystemInputAssistantView:0x105710da0.height == 44   (active)>",
        "<NSLayoutConstraint:0x2809ccff0 'assistantView.bottom' TUISystemInputAssistantView:0x105710da0.bottom == _UIKBCompatInputView:0x10525ae10.top   (active)>",
        "<NSLayoutConstraint:0x2809cccd0 'assistantView.top' V:|-(0)-[TUISystemInputAssistantView:0x105710da0]   (active, names: '|':UIInputSetHostView:0x105215010 )>",
        "<NSLayoutConstraint:0x2809ca300 'inputView.top' V:|-(0)-[_UIKBCompatInputView:0x10525ae10]   (active, names: '|':UIInputSetHostView:0x105215010 )>"
    )

    Will attempt to recover by breaking constraint 
    <NSLayoutConstraint:0x2809ccff0 'assistantView.bottom' TUISystemInputAssistantView:0x105710da0.bottom == _UIKBCompatInputView:0x10525ae10.top   (active)>

    Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
    The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.
于 2020-04-08T22:51:13.377 回答
0

对于 xib 中的 viewCircle,我也遇到了同样的问题,即打破日志中的约束。我几乎尝试了上面列出的所有东西,但没有任何东西对我有用。然后我尝试更改日志中中断的高度约束的优先级(通过在 xib 上添加约束的标识符来确认)在此处输入图像描述

于 2020-02-28T06:01:14.037 回答
0

需要注意的一件事(至少这让我绊倒了)是我从错误的视图中删除了约束。我试图删除的约束不是我的视图的子约束,所以当我这样做时

myView.removeConstraint(theConstraint)

它实际上并没有删除任何东西,因为我需要打电话

myView.superView.removeConstraint(theConstraint)

因为约束在我看来是技术上的兄弟约束。

于 2016-05-05T21:01:05.027 回答
0

基本上,您只需从关联视图中删除该约束。例如,如果高度约束发出警告,只需将其从您的视图中删除;它不会影响视图。

于 2020-12-02T15:15:33.777 回答
-4

迅速 4

我只是在 viewDidLoad 中添加了这一行,然后就可以正常工作了。

view.removeConstraints(view.constraints)
于 2018-12-04T04:17:20.960 回答