在我的根视图控制器中,我将子视图控制器的视图添加为子视图,如下所示:
ChildViewController *cvc = [[ChildViewController alloc] init];
[self addChildViewController:cvc];
[self.view addSubview:cvc.view];
[cvc didMoveToParentViewController:self];
我现在想使用 NSLayoutConstraint 将 cvc.view 定位在父视图(self.view)中,这样 cvc.view 将定位在父视图底部上方 25 pts 处。我的理解是以下应该有效:
UIView *superview = self.view;
UIView *childview = cvc.view;
NSLayoutConstraint *cn =
[NSLayoutConstraint withItem:childview
attribute:NSLayoutAttributeBottom
relatedBy:NSLayoutRelationEqual
toItem:superview attribute:NSLayoutAttributeBottom
multiplier: 1.0
constant: -25.0];
[superview addConstraint: cn];
但是约束在运行时失败。我最初认为子视图中的自动调整大小掩码可能会导致问题(并遵循 WWDC 2012 Intro video on auto layout),所以我设置[childview setTranslatesAutoresizingMaskIntoConstraints:NO]
了 ,但随后子视图根本无法出现。
我究竟做错了什么?