如何将两个视图垂直居中并相对于超级视图平均划分宽度?

How to vertically center two views & divide the width equally relative to the super view?

我试图在 View 中对齐两个 Button(以青色显示)。它们在 View 中垂直对齐。当我尝试水平对齐它们时,它们的高度会发生变化。我希望根据超级视图的宽度,它们的宽度应该相同,而不像更小的 Next 按钮。这可以仅使用 VFL 来实现吗?

代码如下:

[self prepareButton:saveButton label:@"SAVE"];
[buttonContainerView addConstraint:[NSLayoutConstraint constraintWithItem:saveButton
                                                              attribute:NSLayoutAttributeCenterY
                                                              relatedBy:NSLayoutRelationEqual
                                                                 toItem:buttonContainerView
                                                              attribute:NSLayoutAttributeCenterY
                                                             multiplier:1.00f
                                                               constant:0]];
[saveButton layoutIfNeeded];

[self prepareButton:nextButton label:@"NEXT"];
[buttonContainerView addConstraint:[NSLayoutConstraint constraintWithItem:nextButton
                                                              attribute:NSLayoutAttributeCenterY
                                                              relatedBy:NSLayoutRelationEqual
                                                                 toItem:buttonContainerView
                                                              attribute:NSLayoutAttributeCenterY
                                                             multiplier:1.00f
                                                               constant:0]];
[nextButton layoutIfNeeded];
[buttonContainerView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-[saveButton]-[nextButton]-|"
                                                                          options:0
                                                                          metrics:metrics
                                                                            views:viewDictionary]];
[saveButton layoutIfNeeded];
[nextButton layoutIfNeeded];

-(void)prepareButton:(UIButton *)button
           label:(NSString *) label
{
    [buttonContainerView addSubview:button];
    button.translatesAutoresizingMaskIntoConstraints = NO;
    button.backgroundColor = [UIColor redColor];
    button.layer.cornerRadius = 2.50f;
    [button setTitle:label forState:UIControlStateNormal];
    [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
}

通过在 VFL 中设置相同的高度和分配优先级解决了这个问题:

[buttonContainerView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-[saveButton]-[nextButton(==saveButton@1000)]-|"
                                                                          options:0
                                                                          metrics:metrics
                                                                            views:viewDictionary]];