masonry 两个label怎么相对布局

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了masonry 两个label怎么相对布局相关的知识,希望对你有一定的参考价值。

参考技术A UIView *superview = self;

UIView *view1 = [[UIView alloc] init];
view1.translatesAutoresizingMaskIntoConstraints = NO;
view1.backgroundColor = [UIColor greenColor];
[superview addSubview:view1];

UIEdgeInsets padding = UIEdgeInsetsMake(10, 10, 10, 10);

[superview addConstraints:@[

//view1 constraints
[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeTop
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeTop
multiplier:1.0
constant:padding.top],

[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeLeft
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeLeft
multiplier:1.0
constant:padding.left],

[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeBottom
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeBottom
multiplier:1.0
constant:-padding.bottom],

[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeRight
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeRight
multiplier:1
constant:-padding.right],

]];

  即使一个简单的例子所需的代码都相当冗长,当你有超过 2 或 3 视图时变得不可读,另一种选择是使用可视化格式语言 (VFL),有点不太冗长。然而,ASCII 类型语法上有它自己的陷阱并且作为 NSLayoutConstraint constraintsWithVisualFormat: 添加动画效果 返回一个数组也有点难。
  Masonry的优点
  下面是使用MASConstraintMaker创建同样的约束

UIEdgeInsets padding = UIEdgeInsetsMake(10, 10, 10, 10);
[self.subview mas_makeConstraints:^(MASConstraintMaker *make)
make.top.equalTo(self.view.mas_top).with.offset(padding.top);
make.left.equalTo(self.view.mas_left).with.offset(padding.left);
make.bottom.equalTo(self.view.mas_bottom).with.offset(-padding.bottom);
make.right.equalTo(self.view.mas_right).with.offset(-padding.right);
];

  更短代码实现
[self.subview mas_makeConstraints:^(MASConstraintMaker *make)
make.edges.equalTo(self.view).with.insets(padding);
];

此外还需注意使用NSLayoutConstraints时调用了[superview addConstraints:... ] 方法,在Masonry库中是自动向当前视图添加约束的,我们也可以通过self.subview.translatesAutoresizingMaskIntoConstraints = NO来手动设置。

  并不是所有创建都一样
.equalTo     等价于 NSLayoutRelationEqual
.lessThanOrEqualTo 等价于 NSLayoutRelationLessThanOrEqual
.greaterThanOrEqualTo 等价于 NSLayoutRelationGreaterThanOrEqual
参考技术B masonry是label的它的高级部分,也就是说masonry是比labels高级的。这是第一点;
第二点是label是对于masonry这个名词包含的job的名称化的代指。所以只是说label是masonry这个东西,它是个label of masonry,它就是个label。
第三部分的解释是:如果masonry是某项工作的名称,那么它的label就是这个名称的title,也就是指称。
我们可以通过label来汇集工作群的关键词,但是真正的关键词所包含的内容是这个关键词之包含,它并不包含它的label,但是label可以指关键词相关关联的所反指被,也就是相当于refer-ential作为名词时的referential而不是refer或者它只是一个reference,即使是再说它是一个reference的时候,一个衍生的时候,也是对于高级的工作概念masonry来说的label反向所指被非法衍生出来的东西叫做label——是它,masonry的非所属所指向问题所反渡的关挂。
于是在工作的过程中可以不看label,但是一直看labels肯定有什么毛病,但是通过分析label和masonry的这个问案,可以解决关于lebel的进攻错误或者错误反挂的攻击,这样就形成了对大概念性能力产生的完成,但是过程是无法逃避的,而且关于分析能力正确,也可以达到实际的效果:人的进步就是机器时代的福音,而且通过学术工作分析问题的发生真正通过分析找到解决问题的觉悟是发生在当时的,当下的,现在的,即将的,某种延伸你自己作为的有效振动。这有助于你找到女朋友。
在我们专业上,masonry只是一项工作的名称,而且它的内容即是它的定义依赖的活动词组成的形容,而且如果masonry是一个label的话,那么必然不是学术的某个人,而是这些人都是由label的,它们的lebal总称叫做job title或者worker names,但是你知道,一个masonry是人也是工作活动的执行工种,所以谁都不会把人和职责活动产生物体性完成当作不是这个工作的名称所误解的白痴化非的事实,准确地来说,如果符号不严格,那么严格地名称应该是masonary,简单讲。有时候修改也是靠品味。

IOS控件布局之Masonry布局框架

    

前言:

  回想起2013年做iOS开发的时候,那时候并没有采用手写布局代码的方式,而是采用xib文件来编写,如果使用纯代码方式是基于window的size(320,480)计算出一个相对位置进行布局,那个时候windows的size是固定不变的,随着iphone5的发布,windows的size(320,568)也发生了变化,而采用autoresizingMask的方式进行适配,到后来iphone 6之后windows size的宽度也随之变化,开始抛弃autoresizingMask改用autolayout了,使用autolayout进行适配我也是最近重新做iOS开发才接触的,公司使用Masonry框架进行布局适配。所以学习使用这个布局框架对我来说至关重要,它大大提高了开发效率而且最近使用起来很多语法和Android有很大的相似之处。

什么是Masonry?

  Masonry是一个轻量级的布局框架,拥有自己的描述语法,采用更优雅的链式语法封装自动布局、简洁明了、 并具有高可读性、 而且同时支持 iOS 和 Max OS X。

如何使用?

1.)引入头文件

我这里是在全局引用pch文件中引用的

#import "Masonry.h"

2.)基本语法

Masonry提供的属性

  • @property (nonatomic, strong, readonly) MASConstraint *left;//左侧

  • @property (nonatomic, strong, readonly) MASConstraint *top;//上侧

  • @property (nonatomic, strong, readonly) MASConstraint *right;//右侧

  • @property (nonatomic, strong, readonly) MASConstraint *bottom;//下侧

  • @property (nonatomic, strong, readonly) MASConstraint *leading;//首部

  • @property (nonatomic, strong, readonly) MASConstraint *trailing;//尾部

  • @property (nonatomic, strong, readonly) MASConstraint *width;//宽

  • @property (nonatomic, strong, readonly) MASConstraint *height;//高

  • @property (nonatomic, strong, readonly) MASConstraint *centerX;//横向居中

  • @property (nonatomic, strong, readonly) MASConstraint *centerY;//纵向居中

  • @property (nonatomic, strong, readonly) MASConstraint *baseline;//文本基线

Masonry提供了三个函数方法

  • - (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *make))block; //新增约束

  • - (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *make))block;//更新约束

  • - (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block;//清楚之前的所有约束,只会保留最新的约束

我们根据不同的使用场景来选择使用不同的函数方法。

3.)具体举例

  比如一个往父控件中添加一个上下左右与父控件间距为50的子视图

添加约束

技术分享

    UIView *tempView=[[UIView alloc]init];
    tempView.backgroundColor=[UIColor greenColor];
    [self.view addSubview:tempView];
    
    [tempView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.mas_equalTo(50);
        make.right.mas_equalTo(-50);
        make.top.mas_equalTo(50);
        make.bottom.mas_equalTo(-50);
    }];

技术分享

等价于

技术分享

    UIView *tempView=[[UIView alloc]init];
    tempView.backgroundColor=[UIColor greenColor];
    [self.view addSubview:tempView];
    
    [tempView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.equalTo(self.view.mas_left).offset(50);
        make.right.equalTo(self.view.mas_right).offset(-50);
        make.top.equalTo(self.view.mas_top).offset(50);
        make.bottom.equalTo(self.view.mas_bottom).offset(-50);
    }];

技术分享

也可以简化为下面这种

技术分享

    UIView *tempView=[[UIView alloc]init];
    tempView.backgroundColor=[UIColor greenColor];
    [self.view addSubview:tempView];
    
    [tempView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.mas_equalTo(UIEdgeInsetsMake(50, 50, 50, 50));
    }];

技术分享

又等价于

技术分享

    UIView *tempView=[[UIView alloc]init];
    tempView.backgroundColor=[UIColor greenColor];
    [self.view addSubview:tempView];
    
    [tempView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.equalTo(self.view).insets(UIEdgeInsetsMake(50, 50, 50, 50));
    }];

技术分享

更新约束

技术分享

    [tempView mas_updateConstraints:^(MASConstraintMaker *make) {
        make.left.mas_equalTo(50);
        make.right.mas_equalTo(-50);
        make.top.mas_equalTo(100);
        make.bottom.mas_equalTo(-100);
    }];

技术分享

清除之前的约束保留最新的

技术分享

    [tempView mas_remakeConstraints:^(MASConstraintMaker *make) {
        make.left.mas_equalTo(100);
        make.right.mas_equalTo(-100);
        make.top.mas_equalTo(100);
        make.bottom.mas_equalTo(-100);
    }];

技术分享

特别注意:

   声明约束必须在视图添加到父试图上面之后调用。

4.)mas_equalTo与equalTo

 上面的举例中分别使用了mas_equalTo和equalTo达到了同样的效果,我在刚开始使用Masonry的时候很容易混淆他们两个,今天特意分析一下他们的区别。mas_equalTo是一个MACRO,比较的是值,equalTo比较的是id类型。


以上是关于masonry 两个label怎么相对布局的主要内容,如果未能解决你的问题,请参考以下文章

IOS控件布局之Masonry布局框架

在相对布局下方的相对布局中显示按钮

SDAutoLayout:比masonry更简单易用的自动布局库

用eclipse开发android时两个文本组件总是重叠的,怎么解决

Masonry实现label宽高度自适应

了解自动布局中的乘数以使用相对定位