我正在使用自动布局设置UILabel
约束,如下所示:
[self.leadNewsLabel mas_remakeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.containerForNewsText.mas_left).with.offset(16);
make.top.equalTo(self.containerForNewsText.mas_top).with.offset(16);
make.right.equalTo(self.containerForNewsText.mas_right).with.offset(-16);
make.height.greaterThanOrEqualTo(@(50));
make.bottom.equalTo(self.truncatedNewsText.mas_top).with.offset(-20);
}];
我使用Masonry lib以编程方式添加约束,语法非常简单。但是,出于某种原因,UILabel扩大了其边界。请查看调试器的截图:
您可以很容易地看到标签边框与文本边框不同。我怎么能解决它?