这可能是重复的,但情况不同。
故事板中的我的ViewController没有任何对象。我以编程方式创建的所有内容。我有三个名为firstView,secondView和thirdView的视图。
UIView *firstView = [[UIView alloc] init];
UIView *secondView = [[UIView alloc] init];
UIView *thirdView = [[UIView alloc] init];
这些观点的约束如下
的firstView
firstView.leading = self.view.leading;
firstView.trailing = self.view.trailing;
firstView.top = self.view.top;
secondView
secondView.leading = self.view.leading;
secondView.trailing = self.view.trailing;
secondView.top = firstView.bottom;
thirdView
thirdView.leading = self.view.leading;
thirdView.trailing = self.view.trailing;
thirdView.top = secondView.bottom;
现在我想设置每个视图的高度,如下所示。
我知道如何使用Interface Builder,我想知道如何使用乘法器以编程方式实现此目的。