编程自动布局在Xcode 6.4中有效,但在Xcode 7.1 beta中没有

时间:2015-09-23 12:12:39

标签: objective-c xcode autolayout

我已经以编程方式添加了视图并给出了约束。这对于Xcode 6.4和iOS 8来说效果非常好。但是当我尝试使用Xcode 7.1 beta运行相同的东西时,我的应用程序崩溃而没有出现任何错误。我的代码如下:

    NSLayoutConstraint *leftConstraint = [NSLayoutConstraint constraintWithItem:IBviewContainer
                                                                  attribute:NSLayoutAttributeLeading
                                                                  relatedBy:0
                                                                     toItem:self.view
                                                                  attribute:NSLayoutAttributeLeft
                                                                 multiplier:1.0
                                                                   constant:0];
[self.view addConstraint:leftConstraint];

我不知道遗失了什么。请帮我解决这个问题。

0 个答案:

没有答案