除了标题所说的
[_mainContainerView addConstraint:[NSLayoutConstraint constraintWithItem:_mainContainerView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationGreaterThanOrEqual toItem:self.second.view attribute:NSLayoutAttributeBottom multiplier:1 constant:0]];
正如您在屏幕截图中看到的那样,当我调整窗口大小时,红色背景不会跟随主容器视图。你知道为什么会这样吗?
为了解决这个错误,我不得不为宽度/高度设置约束。我还为superview添加了顶部/底部对齐的约束。
答案 0 :(得分:1)
我更愿意:
[_mainContainerView addConstraint:[NSLayoutConstraint constraintWithItem:self.second.view attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:_mainContainerView attribute:NSLayoutAttributeBottom multiplier:1.f constant:0.f]];