画面上に赤の親ビューがあり、その中に緑の子ビューがあります。子を左下隅に配置しようとすると、以下のコードが失敗しました。
[superView addSubview:self];
self.backgroundColor = [UIColor redColor];
[self makeConstraints:^(MASConstraintMaker *make) {
make.width.left.top.equalTo(superView);
make.height.mas_equalTo(50);
}];
UIView *header = [[UIView alloc] init];
[self addSubview:header];
header.backgroundColor = [UIColor greenColor];
[header makeConstraints:^(MASConstraintMaker *make) {
make.height.mas_equalTo(30);
make.width.mas_equalTo(30);
make.bottom.equalTo(self);
}];
この問題を解決するにはどうすればよいですか?