美文网首页
masonry cell 的 contentview 约束冲突

masonry cell 的 contentview 约束冲突

作者: 风___________ | 来源:发表于2019-01-28 13:43 被阅读7次
// 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