首先默认读者已经知道了Masonry的基本使用。这里讲解怎么通过UIView的两个方法实现布局的优先级。
- (void)setContentHuggingPriority:(UILayoutPriority)priority forAxis:(UILayoutConstraintAxis)axis NS_AVAILABLE_IOS(6_0);
- (void)setContentCompressionResistancePriority:(UILayoutPriority)priority forAxis:(UILayoutConstraintAxis)axis NS_AVAILABLE_IOS(6_0);
其中 - (void)setContentHuggingPriority:(UILayoutPriority)priority forAxis:(UILayoutConstraintAxis)axis;
是用来设置控件抗拉伸的优先级。因为是抗拉伸,我们用两个宽度比较小的UILabel做示范:
//两个水平布局的label,两边间隔分别是12,中间间隔为8(懂意思就行)
UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectZero];
label1.backgroundColor = [UIColor redColor];
label1.text = @"我是标题";
[self.view addSubview:label1];
[label1 mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.equalTo(self.view);
make.left.equalTo(@(12));
}];
UILabel *label2 = [[UILabel alloc] initWithFrame:CGRectZero];
label2.backgroundColor = [UIColor redColor];
label2.text = @"我是描述";
[self.view addSubview:label2];
[label2 mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.equalTo(label1);
make.left.equalTo(label1.mas_right).offset(8);
make.right.equalTo(self.view).offset(-12);
}];
如果不添加任何约束是图一这样显示的。那如果我们的需求是label1正常显示,拉伸label2呢,或者说label2的内容紧跟着label1的内容显示。
只需要这样做:
[label1 setContentHuggingPriority:UILayoutPriorityRequired
forAxis:UILayoutConstraintAxisHorizontal];
[label2 setContentHuggingPriority:UILayoutPriorityDefaultLow
forAxis:UILayoutConstraintAxisHorizontal];
显示结果:
这里解释一下设置的两个参数:
很容易明白,对应的1000到50代表优先级从高到低。
UILayoutConstraintAxisHorizontal
横向布局 UILayoutConstraintAxisVertical
纵向布局
然后是- (void)setContentCompressionResistancePriority:(UILayoutPriority)priority forAxis:(UILayoutConstraintAxis)axis
是用来设置控件抗压缩的优先级。因为是抗压缩,我们用两个宽度比较大的UILabel做示范:
UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectZero];
label1.backgroundColor = [UIColor redColor];
label1.text = @"我是标题啊我是标题啊我是标题啊我是标题啊";
[self.view addSubview:label1];
[label1 mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.equalTo(self.view);
make.left.equalTo(@(12));
}];
UILabel *label2 = [[UILabel alloc] initWithFrame:CGRectZero];
label2.backgroundColor = [UIColor redColor];
label2.text = @"我是描述啊我是描述啊我是描述啊我是描述啊";
[self.view addSubview:label2];
[label2 mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.equalTo(label1);
make.left.equalTo(label1.mas_right).offset(8);
make.right.equalTo(self.view).offset(-12);
}];
不加约束的结果是:
因为label1过长,已经把label2挤的就剩一点了。如果我们想优先显示label2,如下设置:
[label1 setContentCompressionResistancePriority:UILayoutPriorityDefaultLow
forAxis:UILayoutConstraintAxisHorizontal];
[label2 setContentCompressionResistancePriority:UILayoutPriorityRequired
forAxis:UILayoutConstraintAxisHorizontal];
效果如图:
那如果label1和lebel2非常长呢,不管设置谁的优先级,其中一个都会被挤没了怎么办?
make.width.greaterThanOrEqualTo
可以设置宽度最少为多少
make.width.lessThanOrEqualTo
可以设置宽度最多为多少
这个我就不在举例了,很有必要自己练练手,体验一下。
以上纯属个人理解,希望对你有所帮助,如果有不对的地方欢迎指出交流。
如有其它问题也欢迎留言,一起分享学习!