Masonry_设置比例

Posted iOS_满聪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Masonry_设置比例相关的知识,希望对你有一定的参考价值。

        [self.bgView addSubview:self.progressImageView];
        [self.progressImageView mas_makeConstraints:^(MASConstraintMaker *make) {
            
            make.left.mas_equalTo(self.nameLabel.mas_right).with.offset(10);
            make.centerY.mas_equalTo(self.iconImageView);
            make.width.mas_equalTo(self.progressBgView).multipliedBy(1);
            make.height.mas_equalTo(3);
        }];

 使用 multipliedBy 设置一个控件的宽是另一个宽的倍数

以上是关于Masonry_设置比例的主要内容,如果未能解决你的问题,请参考以下文章

masonry 设置控件抗压缩及抗拉伸

iOS Masonry 设置布局优先级。

Masonry设置约束优先级[转]

Masonry 添加约束要注意顺序

使用masonry的一个坑

Masonry记录——iOS适配