我在情节提要中布置了一个视图控制器,并启用了自动布局,并且正在寻找一种方法来更改约束以允许我的视图旋转为横向并重新排列屏幕上的按钮。当我尝试下面的代码时,我收到大约两打“无法满足约束,打破约束......”我无法真正解码的消息。
有没有办法用我以编程方式指定的约束动态替换情节提要中的约束?我想完全覆盖我在故事板中定义的按钮布局。
-(void)updateViewConstraints
{
    [super updateViewConstraints];
    self.loginButton.translatesAutoresizingMaskIntoConstraints = NO;
    self.getStartedButton.translatesAutoresizingMaskIntoConstraints = NO;
    self.takeTourButton.translatesAutoresizingMaskIntoConstraints = NO;
    [self.loginButton removeConstraints:self.loginButton.constraints];
    [self.getStartedButton removeConstraints:self.getStartedButton.constraints];
    [self.takeTourButton removeConstraints:self.takeTourButton.constraints];
    one = self.loginButton;
    two = self.getStartedButton;
    three = self.takeTourButton;
    NSDictionary *metrics = @{@"height":@50.0,@"width":@100.0,@"leftSpacing":@110.0};
    NSDictionary *views = NSDictionaryOfVariableBindings(one,two,three);
    [self.view removeConstraints:activeTestLabelConstraints];
    [activeTestLabelConstraints removeAllObjects];
    if(isRotatingToLandscape)
    {
        [self registerConstraintsWithVisualFormat:@"|-[one(two)]-[two(three)]-[three]-|" options:NSLayoutFormatAlignAllTop | NSLayoutFormatAlignAllBottom metrics:metrics views:views];
        [self registerConstraintsWithVisualFormat:@"V:[one(height)]-|" options:0 metrics:metrics views:views];
    }else
    {
        [self registerConstraintsWithVisualFormat:@"|-leftSpacing-[one(width)]" options:0 metrics:metrics views:views];
        [self registerConstraintsWithVisualFormat:@"[two(width)]" options:0 metrics:metrics views:views];
        [self registerConstraintsWithVisualFormat:@"[three(width)]" options:0 metrics:metrics views:views];
        [self registerConstraintsWithVisualFormat:@"V:[one(height)]-[two(75)]-[three(100)]-|" options:NSLayoutFormatAlignAllCenterX metrics:metrics views:views];
    }
}
更新了 Rob 的答案,这是我使用的删除约束的方法
-(void)removeConstraintForView:(UIView*)viewToModify
{
    UIView* temp = viewToModify;
    [temp removeFromSuperview];
    [self.view addSubview:temp];
}