我在该视图导航栏中有一个视图(320x480 还需要使其与 iphone5 兼容)右键单击我想显示一个高度和宽度为 140x140 的视图,所以它看起来像正确的与主视图对齐并位于导航栏下方(或者我们可以说是视图顶部)
为此,如果我写下面的代码,它也不能正确显示我的子视图(有按钮)是不可点击的。
在这种情况下,我不必使用 XIB。我必须以编程方式设置它。
[self.containerView addSubview:settingsView];
[containerView addConstraint:[NSLayoutConstraint constraintWithItem:settingsView
attribute:NSLayoutAttributeTop
relatedBy:NSLayoutRelationEqual
toItem:self.containerView
attribute:NSLayoutAttributeTop
multiplier:1.0
constant:0.0]];
[containerView addConstraint:[NSLayoutConstraint constraintWithItem:settingsView
attribute:NSLayoutAttributeRight
relatedBy:NSLayoutRelationEqual
toItem:self.containerView
attribute:NSLayoutAttributeRight
multiplier:1.0
constant:0.0]];
[self.containerView addConstraints:constraints];
有什么想法吗?怎么了?