iOS学习笔记36-Masonry自动布局

2024-04-01 20:48

本文主要是介绍iOS学习笔记36-Masonry自动布局,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、Masonry介绍

之前我们在屏幕适配的章节中学习过AutoLayout的使用,但那都是在可视化界面上进行添加约束完成的,我们很多时候都需要在代码中使用AutoLayout约束,苹果也为我们提供了实现,使用NSLayoutConstraint类表示约束,但使用起来比较复杂,代码量比较大,例如创建一个约束的方法:

+ (id)constraintWithItem:(id)view1 /* 一个UIView */attribute:(NSLayoutAttribute)attribute1 /* 属性 */relatedBy:(NSLayoutRelation)relation /* 关系 */toItem:(id)view2 /* 另一个UIView */attribute:(NSLayoutAttribute)attribute2 /* 属性 */ multiplier:(CGFloat)multiplier /* 倍数 */constant:(CGFloat)constant; /* 偏移 */

如果约束一多,这个方法调用次数就会越多,代码就会变得很长。
实际上我们可以使用第三方框架Masonry,该框架是一个轻量级的布局框架,封装了AutoLayout,拥有自己的描述语法,采用更优雅的链式语法,简洁明了,并具有高可读性。

Masonry基本支持AutoLayout的所有属性:
 @property (nonatomicstrongreadonly) MASConstraint *left;@property (nonatomicstrongreadonly) MASConstraint *top;@property (nonatomicstrongreadonly) MASConstraint *right;@property (nonatomicstrongreadonly) MASConstraint *bottom;@property (nonatomicstrongreadonly) MASConstraint *leading;@property (nonatomicstrongreadonly) MASConstraint *trailing;@property (nonatomicstrongreadonly) MASConstraint *width;@property (nonatomicstrongreadonly) MASConstraint *height;@property (nonatomicstrongreadonly) MASConstraint *centerX;@property (nonatomicstrongreadonly) MASConstraint *centerY;@property (nonatomicstrongreadonly) MASConstraint *baseline;
这些属性与NSLayoutAttrubute的对照表如下:

二、Masonry使用

Masonry的大部分方法都为UIView实现了分类,使我们可以十分简单的使用

下面是Masonry添加约束的方法:
/* 添加新约束,只负责新增约束,不能同时存在两条针对于同一对象的约束,否则会报错 */
- (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *make))block;
/* 更新原有的约束,针对上面的情况,会更新在block中出现的约束,不会导致出现两个相同约束的情况 */
- (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *make))block;
/* 删除之前约���,重新添加约束,会清除之前的所有约束,仅保留最新的约束 */
- (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block;
  • 上面三个方法不仅只有UIView可以调用,存有UIViewNSArray数组也可以调用,表示遍历数组中所有UIView进行调用
下面是Block中使用的常见约束语法,[attribute]表示属性,[value]表示值:
/* 属性attribute可以连用,比如top.right.bottom.left加mas_前缀和没有mas_前缀效果差不多,只是加mas_前缀会对参数装箱,参数有结构体的时候,需要使用mas_前缀,没有mas_前缀的参数必须为对象
*/
/* 数值约束,top对应NSInteger,center对应NSPoint,size对应NSSize */
make.[attribute].mas_equalTo([value]);
/* 等于约束,两个view之间比较,注意:没有other.edges的属性,edges对应otherView */
make.[attribute].equalTo(otherView.[attribute]);
/* 大于等于约束,两个view之间比较 */
make.[attribute].greaterThanOrEqualTo(otherView.[attribute]);
/* 小于等于约束,两个view之间比较 */
make.[attribute].lessThanOrEqualTo(otherView.[attribute]);
/* 偏移约束 */
make.[attribute].equalTo(otherView.[attribute]).offset([value]);
/* 边界约束,有上、下、左、右边界 */
make.edges.equalTo(otherView).insets(UIEdgeInsetsMake([topValue],[leftValue],[bottomValue],[rightValue]));
/* Margin约束 */
make.[attribute].equalTo(otherView.[attribute]Margin);
注意:

添加约束前,必须先把UIView添加到父视图中,否则会闪退

下面我们通过几个实例来理解:
1. 实例一[基础]:居中显示一个view
- (void)viewDidLoad {[super viewDidLoad];UIView *sv = [[UIView alloc] init];sv.backgroundColor = [UIColor blackColor];//一定要先将view添加到superView上,否则会出错[self.view addSubview:sv];//Masonry的autolayout添加约束__weak ViewController *weakSelf = self;[sv mas_makeConstraints:^(MASConstraintMaker *make) {make.center.equalTo(weakSelf.view);//将sv居中make.size.mas_equalTo(CGSizeMake(300300));//将sv的尺寸设置为(300,300)}];
}

2. 实例二[初级]:让一个view略小于其superView(边距为10)
UIView *sv = [[UIView alloc] init];
sv.backgroundColor = [UIColor blackColor];
//一定要先将view添加到superView上,否则会出错
[self.view addSubview:sv];
//Masonry的autolayout添加约束
__weak ViewController *weakSelf = self;
[sv mas_makeConstraints:^(MASConstraintMaker *make) {make.center.equalTo(weakSelf.view);//将sv居中make.size.mas_equalTo(CGSizeMake(300300));//将sv的尺寸设置为(300,300)
}];
UIView *sv1 = [[UIView alloc] init];
sv1.backgroundColor = [UIColor redColor];
//一定要先将view添加到superView上,否则会出错
[sv addSubview:sv1];
//Masonry的autolayout添加约束
[sv1 mas_makeConstraints:^(MASConstraintMaker *make) {make.edges.equalTo(sv).with.insets(UIEdgeInsetsMake(10, 10, 10, 10));/* 等价于make.top.equalTo(sv).with.offset(10);make.left.equalTo(sv).with.offset(10);make.bottom.equalTo(sv).with.offset(-10);make.right.equalTo(sv).with.offset(-10);*//* 也等价于make.top.left.bottom.and.right.equalTo(sv).with.insets(UIEdgeInsetsMake(10, 10, 10, 10));*/
}];

实际上and和with这两个方法什么事情都没做:
- (MASConstraint *)with {return self;
}
- (MASConstraint *)and {return self;
}
3. 实例三[初级]:让两个高度为150的view垂直居中且等宽且等间隔排列,间隔为10(自动计算其宽度)
UIView *sv = [[UIView alloc] init];
sv.backgroundColor = [UIColor blackColor];
//一定要先将view添加到superView上,否则会出错
[self.view addSubview:sv];
//Masonry的autolayout添加约束
__weak ViewController *weakSelf = self;
[sv mas_makeConstraints:^(MASConstraintMaker *make) {make.center.equalTo(weakSelf.view);//将sv居中make.size.mas_equalTo(CGSizeMake(300300));//将sv的尺寸设置为(300,300)
}];
int padding1 = 10;
UIView *leftView = [[UIView alloc] init];
leftView.backgroundColor = [UIColor orangeColor];
[sv addSubview:leftView];
UIView *rightView = [[UIView alloc] init];
rightView.backgroundColor = [UIColor orangeColor];
[sv addSubview:rightView];
//Masonry的autolayout添加约束
[leftView mas_makeConstraints:^(MASConstraintMaker *make) {make.centerY.mas_equalTo(sv.mas_centerY);//中心Y轴和sv中心Y轴相等make.left.equalTo(sv.mas_left).with.offset(padding1);//左边距离sv的左边界10make.right.equalTo(rightView.mas_left).with.offset(-padding1);//右边距离rightView的左边界-10make.height.mas_equalTo(@150);//高度150make.width.equalTo(rightView);//宽度等于rightView
}];
[rightView mas_makeConstraints:^(MASConstraintMaker *make) {make.centerY.mas_equalTo(sv.mas_centerY);//中心Y轴和sv中心Y轴相等make.left.equalTo(leftView.mas_right).with.offset(padding1);//左边距离leftView的右边界10make.right.equalTo(sv.mas_right).with.offset(-padding1);//右边距离sv的右边界-10make.height.mas_equalTo(@150);//高度150make.width.equalTo(leftView);//宽度等于leftView
}];

4. 实例四[中级]:在UIScrollView顺序排列一些view并自动计算contentSize
UIView *sv = [[UIView alloc] init];
sv.backgroundColor = [UIColor blackColor];
//一定要先将view添加到superView上,否则会出错
[self.view addSubview:sv];
//Masonry的autolayout添加约束
__weak ViewController *weakSelf = self;
[sv mas_makeConstraints:^(MASConstraintMaker *make) {make.center.equalTo(weakSelf.view);//将sv居中make.size.mas_equalTo(CGSizeMake(300300));//将sv的尺寸设置为(300,300)
}];
/* 创建ScrollView */
UIScrollView *scrollView = [[UIScrollView alloc] init];
scrollView.backgroundColor = [UIColor whiteColor];
[sv addSubView:scrollView];
[scrollView mas_makeConstraints:^(MASConstraintMaker *make) {//设置边界约束make.edges.equalTo(sv).with.insets(UIEdgeInsetsMake(5,5,5,5));
}];
//创建ScrollView子视图容器视图
UIView *container = [[UIView alloc] init];
[scrollView addSubView:container];
//添加container约束
[container mas_makeConstraints:^(MASConstraintMaker *make) {make.edges.equalTo(scrollView);//边界紧贴ScrollView边界make.width.equalTo(scrollView);//宽度和ScrollView相等
}];
//向container添加多个View
int count = 10;
UIView *lastView = nil;
for(int i = 1;i <= count;++i ){//创建一个ViewUIView *subView = [[UIView alloc] init];[container addSubView:subView];//颜色随机subView.backgroundColor = [UIColor colorWithRed:( arc4random() % 256 / 256.0 )green:( arc4random() % 256 / 256.0 )blue:( arc4random() % 256 / 256.0 )alpha:1];//向subView添加约束[subView mas_makeConstraints:^(MASConstraintMaker *make) {make.left.and.right.equalTo(container);//左右边界和container紧贴make.height.mas_equalTo(@(20*i));//高度随i递增//判断是否有前一个子Viewif ( lastView ) {//如果有前一个View,上边界和前一个View的下边界紧贴make.top.mas_equalTo(lastView.mas_bottom);} else {//如果没有前一个View,上边界和container的下边界紧贴make.top.mas_equalTo(container.mas_top);}}];//保存前一个ViewlastView = subView;
}
//添加container的最后一个约束
[container mas_makeConstraints:^(MASConstraintMaker *make) {//container的下边界和最后一个View的下边界紧贴make.bottom.equalTo(lastView.mas_bottom);
}];

三、Masonry进阶

Masonry为NSArray实现了2个特殊的分类方法:
/*该方法只有存有UIView的NSArray数组可以调用,NSArray里面的UIView必须有共同的spuerView该方法作用是UIView之间的水平等宽定距约束,或者垂直等高定距约束。先确定间距,宽度或高度不确定,但相等axisType只有MASAxisTypeHorizontal(水平间距类型)和MASAxisTypeVertical(垂直间距类型)fixedSpacing是UIView两两之间的间距大小leadSpacing是第一个UIView距离superView左(或上)边界的间距大小tailSpacing是最后一个UIView距离superView右(或下)边界的间距大小数组里的所有UIView水平宽度相等,或者垂直高度相等
*/
- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType withFixedSpacing:(CGFloat)fixedSpacing leadSpacing:(CGFloat)leadSpacing tailSpacing:(CGFloat)tailSpacing;/*该方法只有存有UIView的NSArray数组可以调用,NSArray里面的UIView必须有共同的spuerView该方法作用是UIView之间的水平定宽等距约束,或者垂直定高等距约束。先确定宽度或高度,间距不确定,但相等axisType只有MASAxisTypeHorizontal(水平间距类型)和MASAxisTypeVertical(垂直间距类型)fixedSpacing是UIView两两之间的间距大小leadSpacing是第一个UIView距离superView左(或上)边界的间距大小tailSpacing是最后一个UIView距离superView右(或下)边界的间距大小数组里的所有UIView间距相等
*/
- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType withFixedItemLength:(CGFloat)fixedItemLength leadSpacing:(CGFloat)leadSpacing tailSpacing:(CGFloat)tailSpacing;
下面是等间距方法的使用实例:
/*    设置水平等宽定距UIView之间水平间距为20,第一个UIView距离superView左边6,最后一个UIView距离superView右边7,UIView高度为60,距离顶部40
*/
[array mas_distributeViewsAlongAxis:MASAxisTypeHorizontal withFixedSpacing:20 leadSpacing:6 tailSpacing:7];
[array mas_makeConstraints:^(MASConstraintMaker *make) {make.top.equalTo(@40);make.height.equalTo(@60);
}];
/*    设置水平定宽等距所有UIView的宽度为20,第一个UIView距离superView左边6,最后一个UIView距离superView右边7,UIView高度为60,距离顶部40
*/
[array mas_distributeViewsAlongAxis:MASAxisTypeHorizontal withFixedItemLength:20 leadSpacing:6 tailSpacing:7];
[array mas_makeConstraints:^(MASConstraintMaker *make) {make.top.equalTo(@40);make.height.equalTo(@60);
}];
有什么问题可以在下方评论区中提出!O(∩_∩)O哈!
复制代码
src="http://player.youku.com/embed/XNzkxMTc3OTM2" allowfullscreen="" frameborder="0" height="498" width="510">
src="http://player.youku.com/embed/XNzkxMTc3OTM2" allowfullscreen="" frameborder="0" height="498" width="510">

这篇关于iOS学习笔记36-Masonry自动布局的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/868113

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

【学习笔记】 陈强-机器学习-Python-Ch15 人工神经网络(1)sklearn

系列文章目录 监督学习:参数方法 【学习笔记】 陈强-机器学习-Python-Ch4 线性回归 【学习笔记】 陈强-机器学习-Python-Ch5 逻辑回归 【课后题练习】 陈强-机器学习-Python-Ch5 逻辑回归(SAheart.csv) 【学习笔记】 陈强-机器学习-Python-Ch6 多项逻辑回归 【学习笔记 及 课后题练习】 陈强-机器学习-Python-Ch7 判别分析 【学

系统架构师考试学习笔记第三篇——架构设计高级知识(20)通信系统架构设计理论与实践

本章知识考点:         第20课时主要学习通信系统架构设计的理论和工作中的实践。根据新版考试大纲,本课时知识点会涉及案例分析题(25分),而在历年考试中,案例题对该部分内容的考查并不多,虽在综合知识选择题目中经常考查,但分值也不高。本课时内容侧重于对知识点的记忆和理解,按照以往的出题规律,通信系统架构设计基础知识点多来源于教材内的基础网络设备、网络架构和教材外最新时事热点技术。本课时知识

线性代数|机器学习-P36在图中找聚类

文章目录 1. 常见图结构2. 谱聚类 感觉后面几节课的内容跨越太大,需要补充太多的知识点,教授讲得内容跨越较大,一般一节课的内容是书本上的一章节内容,所以看视频比较吃力,需要先预习课本内容后才能够很好的理解教授讲解的知识点。 1. 常见图结构 假设我们有如下图结构: Adjacency Matrix:行和列表示的是节点的位置,A[i,j]表示的第 i 个节点和第 j 个