iOS之功能细节界面iOS开发技术分享

Masonry 和 布局优先级约束

2017-08-29  本文已影响709人  呆萌的中指

首先默认读者已经知道了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);
}];

图一@2x.png

如果不添加任何约束是图一这样显示的。那如果我们的需求是label1正常显示,拉伸label2呢,或者说label2的内容紧跟着label1的内容显示。
只需要这样做:

[label1 setContentHuggingPriority:UILayoutPriorityRequired
                          forAxis:UILayoutConstraintAxisHorizontal];
[label2 setContentHuggingPriority:UILayoutPriorityDefaultLow
                          forAxis:UILayoutConstraintAxisHorizontal];

显示结果:

图二.png

这里解释一下设置的两个参数:

图三.png

很容易明白,对应的1000到50代表优先级从高到低。

图四.png
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);
}];

不加约束的结果是:

图五.png

因为label1过长,已经把label2挤的就剩一点了。如果我们想优先显示label2,如下设置:

[label1 setContentCompressionResistancePriority:UILayoutPriorityDefaultLow
                                        forAxis:UILayoutConstraintAxisHorizontal];
[label2 setContentCompressionResistancePriority:UILayoutPriorityRequired
                                        forAxis:UILayoutConstraintAxisHorizontal];

效果如图:

图七.png

那如果label1和lebel2非常长呢,不管设置谁的优先级,其中一个都会被挤没了怎么办?
make.width.greaterThanOrEqualTo 可以设置宽度最少为多少
make.width.lessThanOrEqualTo可以设置宽度最多为多少
这个我就不在举例了,很有必要自己练练手,体验一下。

以上纯属个人理解,希望对你有所帮助,如果有不对的地方欢迎指出交流。

上一篇 下一篇

猜你喜欢

热点阅读