Ios 无法同时满足约束,它来自哪里?

Ios 无法同时满足约束,它来自哪里?,ios,xcode,autolayout,uistoryboard,Ios,Xcode,Autolayout,Uistoryboard,我在构建应用程序时收到此警告。我用的是故事板,但所有的限制都是正确的。。我不知道我还要去哪里找 2014-04-29 14:18:54.072 gTicket[1540:60b] 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 ea

我在构建应用程序时收到此警告。我用的是故事板,但所有的限制都是正确的。。我不知道我还要去哪里找

2014-04-29 14:18:54.072 gTicket[1540:60b] 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) 
(
    "<NSLayoutConstraint:0x16593a90 V:[UIView:0x165a1dd0(429)]>",
    "<NSLayoutConstraint:0x165b3c50 V:[UILabel:0x165b3d80(20)]>",
    "<NSLayoutConstraint:0x165b37c0 V:[UIView:0x165945a0(52)]>",
    "<NSLayoutConstraint:0x165ac960 V:[_UILayoutGuide:0x165a8670]-(36)-[UIView:0x165a1dd0]>",
    "<NSLayoutConstraint:0x165a9060 V:[UIView:0x165a1dd0]-(14)-[UILabel:0x165b3d80]>",
    "<NSLayoutConstraint:0x165b50d0 V:[UILabel:0x165b3d80]-(16)-[UIView:0x165945a0]>",
    "<NSLayoutConstraint:0x165a1e80 V:[UIView:0x165945a0]-(1)-[_UILayoutGuide:0x165adfc0]>",
    "<_UILayoutSupportConstraint:0x165adf00 V:[_UILayoutGuide:0x165a8670(0)]>",
    "<_UILayoutSupportConstraint:0x165ae3b0 V:|-(0)-[_UILayoutGuide:0x165a8670]   (Names: '|':UIView:0x165a6940 )>",
    "<_UILayoutSupportConstraint:0x1659c120 V:[_UILayoutGuide:0x165adfc0(0)]>",
    "<_UILayoutSupportConstraint:0x165a12d0 _UILayoutGuide:0x165adfc0.bottom == UIView:0x165a6940.bottom>",
    "<NSAutoresizingMaskLayoutConstraint:0x165baf00 h=--& v=--& V:[UIView:0x165a6940(431)]>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x16593a90 V:[UIView:0x165a1dd0(429)]>
2014-04-29 14:18:54.072 gTicket[1540:60b]无法同时满足约束条件。
可能下面列表中至少有一个约束是您不想要的。试着这样做:(1)看看每个约束,试着找出你不期望的约束;(2) 找到添加了不需要的约束的代码,然后修复它。(注意:如果您看到不理解的NSAutoresizingMaskLayoutConstraints,请参阅UIView属性TranslatesAutoResizingMaskToConstraints的文档)
(
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
""
)
将尝试通过打破约束进行恢复

是否可以确定哪个UILabel及其所抱怨的视图?

您是否忘了[每个视图集翻译自动调整大小GMaskintoConstraints:否]?哦,天哪,是的,这是我创建的一个新视图。是的,我忘了这个。谢谢