10

我有一个简单的 UIInputViewController 子类,只有两个被覆盖的方法。inputAccessoryViewController我在成为第一响应者的 UIViewController 子类上使用此输入视图控制器。我尝试按照 Apple 文档的建议通过添加约束来指定 inputView 的高度。问题是我的约束不起作用,并且在添加约束时出现自动布局异常

Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want.
...
(
    "<NSLayoutConstraint:0x178aa1d0 V:[UIInputView:0x178a4ae0(0)]>",
    "<NSLayoutConstraint:0x178b9520 V:[UIInputView:0x178a4ae0(500)]>"
)
Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x178b9520 V:[UIInputView:0x178a4ae0(500)]>

我认为这意味着系统已经向输入视图添加了零高度约束(因为它是用零高度创建的)。现在它们发生冲突,自动布局打破了我解决问题的约束。

当我尝试将它用作inputViewController我的视图控制器(仅用于测试目的)时,我得到了同样的异常,但它不是零高度,而是 216 像素。它也打破了我的约束,高度保持默认。

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.

    self.inputView.translatesAutoresizingMaskIntoConstraints = NO;
    self.inputView.backgroundColor = [UIColor redColor];
}

- (void)updateViewConstraints {

    CGFloat _expandedHeight = 500;
    NSLayoutConstraint *_heightConstraint = 
    [NSLayoutConstraint constraintWithItem:self.view
                                 attribute:NSLayoutAttributeHeight
                                 relatedBy:NSLayoutRelationEqual
                                    toItem:nil
                                 attribute:NSLayoutAttributeNotAnAttribute
                                 multiplier:0.0
                                   constant: _expandedHeight];
    [self.inputView addConstraint: _heightConstraint];

    [super updateViewConstraints];
}

-(void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    [self.view setNeedsUpdateConstraints];
}

结果,我无法更改输入附件视图高度。有人成功了吗?显然,Apple 文档没有提供任何帮助......

4

4 回答 4

10

由于 iOS 9.0 这可以解决inputView.allowsSelfSizing = YES;

于 2015-11-26T16:27:07.360 回答
3

我不知道这是否是问题,但问题可能来自您在 _heightConstraint 上设置的 0.0 乘数。尝试将其更改为 1.0。

它看起来像这样:

NSLayoutConstraint *_heightConstraint = 
    [NSLayoutConstraint constraintWithItem:self.view
                                 attribute:NSLayoutAttributeHeight
                                 relatedBy:NSLayoutRelationEqual
                                    toItem:nil
                                 attribute:NSLayoutAttributeNotAnAttribute
                                 multiplier:1.0
                                   constant: _expandedHeight];

希望这可以帮助!

于 2014-10-09T07:21:34.767 回答
1

当您使视图成为 UITextView 的输入附件视图时,一旦文本视图成为第一响应者,就会自动添加高度约束,并将其设置为作为帧高度发送的任何内容。例如:

let inputView = UIInputView(frame: CGRectMake(0, 0, view.bounds.width, 200), 
    inputViewStyle: .Default)
someTextView.inputAccessoryView = inputView
someTextView.becomeFirstResponder()
assert((inputView.constraints().last as NSLayoutConstraint).constant == 200)

您可以在事后修改此约束。

于 2014-11-10T16:28:58.280 回答
0

我在 Swift 中做到了。希望这可以帮助你。

override func viewDidAppear(animated: Bool) {

    let heightConstraint = NSLayoutConstraint(
        item:self.view,
        attribute:NSLayoutAttribute.Height,
        relatedBy:NSLayoutRelation.Equal,
        toItem:nil,
        attribute:NSLayoutAttribute.NotAnAttribute,
        multiplier:0.0,
        constant:100)

    self.view.addConstraint(heightConstraint)
}
于 2014-10-24T13:42:02.553 回答