以编程方式添加控制器视图时,自定义自动布局约束会中断

时间:2014-06-24 16:30:54

标签: ios autolayout nslayoutconstraint

我有一个myController,我在代码中插入(在self =一个根视图控制器中)这样:

    MyViewController* myController = [[MyViewController alloc] initWithNibName:nil bundle:nil];
    [self addChildViewController:myController];
    [self.view addSubview:myController.view];
    myController.view.frame = CGRectMake(0, 504, 320, 216);

在MyViewController的xib文件中,我只有2个视图,一个在另一个上面。让我们说顶视图称为View1,底部视图称为View2。 View0是主视图。

我添加了以下垂直NSLayoutConstraints:     五:[视图2(40)]     V:| - (0)-View1(姓名:' |':View0)     五:View2-(0) - | (姓名:' |':View0)     五:View1-(0)-View2

也就是说,View1在顶部触摸View0,在底部触摸View2。 View2在顶部触摸View1,在底部触摸View0,并且具有40的恒定高度。

当我以肖像方式运行时,一切似乎都没问题。但是当我旋转到横向时,我有时会出现以下错误。

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:0xd17cc00 h=--& v=--& V:[UIView:0xd174a30(268)]>",
"<NSLayoutConstraint:0x9469890 V:[View2(40)]>",
"<NSLayoutConstraint:0x9468e90 V:|-(0)-View1   (Names: '|':View0 )>",
"<NSLayoutConstraint:0x9468ef0 V:View2-(0)-|   (Names: '|':View0 )>",
"<NSLayoutConstraint:0x94676f0 V:View1-(0)-View2>",
"<NSAutoresizingMaskLayoutConstraint:0x9450640 h=-&- v=-&- UIView:0000.height == UIView:0xd174a30.height - 268>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x9469890 V:[View2(40)]>

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.

有人知道我为什么这么做吗?我应该做些什么来保持我定义的约束为先?

2 个答案:

答案 0 :(得分:7)

好的,最后,为了解决这个问题,我不得不在View0上将translatesAutoresizingMaskIntoConstraints设置为NO。

然后,为了很好地显示我的View0,我必须为View0手动创建NSLayoutConstraint并将这些约束添加到View0的超级视图。

答案 1 :(得分:1)

自动调整遮罩是在iOS中进行布局的传统方式(在iOS 6中自动布局之前)。 UIView上有一个属性会自动将此遗留系统转换为名为translatesAutoresizingMaskIntoConstraints的布局约束,默认情况下为YES。如果您在代码中创建视图(或在某些情况下使用IB)并打算使用自动布局来定位它,则应将此属性设置为NO以避免出现上述问题。每当您在约束警告中看到NSAutoresizingMaskLayoutConstraint约束类型时,这可能就是原因。

相关问题