问题:UITableViewCellContentView:height == 44 约束冲突

使用Masonry自动布局,高度自定义,出现如标题所示约束冲突

解决方案:

在设置底部约束的时候设置 高优先级priorityHigh() 即可

[self.auditBtn mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerX.equalTo(self.bgView);
        make.height.equalTo(@(btnH));
        make.width.equalTo(self.bgView.mas_width).multipliedBy(0.5);
        make.top.equalTo(self.stackView.mas_bottom).offset(10);
        make.bottom.equalTo(self.bgView).offset(-10).priorityHigh();
    }];

你可能感兴趣的:(html,前端)