Unable to simultaneously satisfy constraints

匿名 (未验证) 提交于 2019-12-03 00:26:01
[aSubView mas_makeConstraints:^(MASConstraintMaker *make) {



代码如上。原因是在设定了子view的left和right后,
就隐藏了一个条件:superView的width必须大于等于20,

才能满足上面的条件。

但如果上面的代码是放在superView的init中的话,
此时superView的约束还没有加上,因为view必须
addSubview之后,才能增加约束。
此时系统给superView默认加了个width = 0的约束,
就和superView的width必须必须大于等于20的条件
冲突了。


解决办法:
[aSubView mas_makeConstraints:^(MASConstraintMaker *make) {







警告如下:
[LayoutConstraints] Unable to simultaneously satisfy constraints.




(
<MASLayoutConstraint:0x6040002a0000 UILabel:0x7f9a1ee29800.left == PfasDetailInfoView:0x7f9a1ee28bb0.left + 11>,
<MASLayoutConstraint:0x6040002a0180 UILabel:0x7f9a1ee29800.right == PfasDetailInfoView:0x7f9a1ee28bb0.right - 15>,
<NSLayoutConstraint:0x604000286fe0 PfasDetailInfoView:0x7f9a1ee28bb0.width == 0>,
)
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!