masonry cell 的 contentview 约束冲突
// priorityHigh(); 画重点
与底部约束的控件可以这样写:
make.bottom.mas_equalTo(self.contentView).offset(-15).priorityHigh();
可以通过修改约束优先级来消除约束警告
与底部约束的控件可以这样写
[self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(....mas_bottom).offset(10);
make.left.mas_equalTo(self.contentView).offset(15);
make.size.mas_equalTo(CGSizeMake(100, 20));
make.bottom.mas_equalTo(self.contentView).offset(-15).priorityHigh();
}];
消除contentview.height= 44;
本文标题:masonry cell 的 contentview 约束冲突
本文链接:https://www.haomeiwen.com/subject/nbdajqtx.html
网友评论