Autolayout基础

1、什么是Autolayout?

答: Autolayout是一种“自动布局”技术,专门用来布局UI界面的。Autolayout自iOS6开始引入,由于Xcode4的不给力,当时并没有得到很大推广。自iOS7(Xcode5)开始,Autolayout的开发效率得到很大的提升。苹果官方也推荐开发者尽量使Autolayout来布局UI界面,它能很轻松地解决屏幕适配的问题。

上边这段是在别处复制的,没有上边这段总觉着少点什么......各位看官勿怪。

2、Autolayout的两个核心概念(约束、参照物)。

  • 约束:对View的大小和位置进行约束;

  • 参照物:以某个View作为参照物对目标View添加约束。

Autolayout就是利用约束和参照物来控制视图的大小和位置,系统会在运行时根据你设置的约束进行计算得到具体的Frame再绘制屏幕。
一般4个约束就能确定控件的具体位置和大小,不能多也不能少(能根据控件内容计算高度的控件除外。比如,UILabel、UITextView、UIImage)。

3、Autolayout用到的核心类(NSLayoutConstraint)

这个类点开它的头文件,内容很简单,这里把经常用到的属性、方法、枚举拿出来说一说。

(1)、类方法,添加一个约束
/**
    给视图添加一个约束;
    @param   view1   目标View;
    @param   attr1   目标View约束的属性,是一个枚举(NSLayoutAttribute),这个枚举点进去一看知;
    @param   relation    与目标View约束值得关系(>、=、<),也是一个枚举(NSLayoutRelation);
    @param   view2   参照物View;
    @param   attr2     参照物View约束的属性;
    @param   multiplier  间距的倍数;
    @param   c 间距的具体数值;
    return   一个约束(NSLayoutConstraint对象)。
*/
+(instancetype)constraintWithItem:(id)view1 attribute:(NSLayoutAttribute)attr1 relatedBy:(NSLayoutRelation)relation toItem:(nullable id)view2 attribute:(NSLayoutAttribute)attr2 multiplier:(CGFloat)multiplier constant:(CGFloat)c;
(2)、priority属性(优先级)

@property UILayoutPriority priority;

这个属性用来修饰约束的优先级,它的取值范围为0.0 ~ 1000.0,优先级越高,该约束优先生效。一个约束的默认优先级为最高,也就是1000.0。系统给我们提供了四个优先级:

UILayoutPriorityRequired   -->   值为1000,最高优先级,约束默认优先级;

UILayoutPriorityDefaultHigh  -->  值为750,高优先级;

UILayoutPriorityDefaultLow   -->   值为250,低优先级;

UILayoutPriorityFittingSizeLevel   -->  值为50,极低优先级,但不是最低,优先级最低值为0.0。

这四个等级完全可以满足日常开发中大部分的需求。当然你也可以在0.0 ~ 1000.0随意设置它的值,但不能超过这个范围。

如果超出这个范围,编译是可以通过的,但是运行时会crash。

4、上代码

(1)、首先我们要实现以下的效果,红色View距离父View左边和上边20,自身宽和高为50。


redView.png
//添加一个距离父View左边距离为20的约束,参照物是父View
NSLayoutConstraint *redViewLeftC = [NSLayoutConstraint constraintWithItem:redView attribute:(NSLayoutAttributeLeftMargin) relatedBy:(NSLayoutRelationEqual) toItem:self.view attribute:NSLayoutAttributeLeftMargin multiplier:1.0f constant:20.0];
//有参照物,所以这个约束要添加到父View上
[self.view addConstraint:redViewLeftC];
    
//添加一个距离父View上边距离为20的约束,参照物是父View
NSLayoutConstraint *redViewTopC = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeTopMargin relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTopMargin multiplier:1.0f constant:20.0];
//有参照物,所以这个约束要添加到父View上
[self.view addConstraint:redViewTopC];
    
//添加一个宽度为50的约束,参照物是自己
NSLayoutConstraint *redViewWidthC = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:kNilOptions multiplier:1.0f constant:50.0];
//参照物是自己,添加到目标View上
[redView addConstraint:redViewWidthC];
    
//添加一个高度为50的约束,参照物是自己
NSLayoutConstraint *redHeightC = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:kNilOptions multiplier:1.0f constant:50.0];
//参照物是自己,添加到目标View上
[redView addConstraint:redHeightC];

(2)、实现以下效果,添加一个蓝色View,左边距离红色View20,上边与红色View水平对其,宽高与红色View相同。
redViewAndBlueView.png
    //创建蓝色View
    UIView *blueView = [[UIView alloc]init];
    blueView.translatesAutoresizingMaskIntoConstraints = NO;
    blueView.backgroundColor = [UIColor blueColor];
    [self.view addSubview:blueView];
    self.blueView = blueView;

    //添加一个距离红色View右边距离为20的约束,参照物是redView
    NSLayoutConstraint *blueViewLeftC = [NSLayoutConstraint constraintWithItem:blueView attribute:(NSLayoutAttributeLeftMargin) relatedBy:NSLayoutRelationEqual toItem:redView attribute:NSLayoutAttributeRightMargin multiplier:1.0f constant:20.0];
    //参照物是redView,添加到目标父View上
    [self.view addConstraint:blueViewLeftC];
    
    //添加一个与红色View上边水平对齐的约束,参照物是redView
    NSLayoutConstraint *blueViewTopC = [NSLayoutConstraint constraintWithItem:blueView attribute:NSLayoutAttributeTopMargin relatedBy:NSLayoutRelationEqual toItem:redView attribute:NSLayoutAttributeTopMargin multiplier:1.0f constant:0.0];
    //参照物是redView,添加到目标父View上
    [self.view addConstraint:blueViewTopC];
    
    //添加一个宽度为50的约束,参照物是自己
    NSLayoutConstraint *blueViewWithC = [NSLayoutConstraint constraintWithItem:blueView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:kNilOptions multiplier:1.0f constant:50.0];
    //参照物是自己,添加到目标View上
    [blueView addConstraint:blueViewWithC];
    
    //添加一个宽度为50的约束,参照物是自己
    NSLayoutConstraint *blueViewHeightC = [NSLayoutConstraint constraintWithItem:blueView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:kNilOptions multiplier:1.0f constant:50.0];
    //参照物是自己,添加到目标View上
    [blueView addConstraint:blueViewHeightC];

(3)、接下来利用优先级 UILayoutPriority 实现一个简单的动画效果,点击View


11月-24-2017 16-12-44.gif
//创建黄色View
    UIView *yellowView = [[UIView alloc]init];
    yellowView.backgroundColor = [UIColor yellowColor];
    yellowView.translatesAutoresizingMaskIntoConstraints = NO;
    [self.view addSubview:yellowView];
    
    //添加一个距离蓝色View右边距离为20的约束,参照物是blueView
    NSLayoutConstraint *yellowVLeftBlueV = [NSLayoutConstraint constraintWithItem:yellowView attribute:NSLayoutAttributeLeftMargin relatedBy:NSLayoutRelationEqual toItem:blueView attribute:NSLayoutAttributeRightMargin multiplier:1.0f constant:20.0];
    //参照物是blueView,添加到目标父View上
    [self.view addConstraint:yellowVLeftBlueV];
    
    //添加一个与蓝色View上边水平对齐的约束,参照物是blueView
    NSLayoutConstraint *yellowViewTopC = [NSLayoutConstraint constraintWithItem:yellowView attribute:NSLayoutAttributeTopMargin relatedBy:NSLayoutRelationEqual toItem:redView attribute:NSLayoutAttributeTopMargin multiplier:1.0f constant:0.0];
    //参照物是blueView,添加到目标父View上
    [self.view addConstraint:yellowViewTopC];
    
    //添加一个宽度为50的约束,参照物是自己
    NSLayoutConstraint *yellowViewWidthC = [NSLayoutConstraint constraintWithItem:yellowView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:kNilOptions multiplier:1.0f constant:50.0];
    //参照物是自己,添加到目标View上
    [yellowView addConstraint:yellowViewWidthC];
    
    //添加一个高度为50的约束,参照物是自己
    NSLayoutConstraint *yellowViewHeightC = [NSLayoutConstraint constraintWithItem:yellowView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:kNilOptions multiplier:1.0f constant:50.0];
    //参照物是自己,添加到目标View上
    [yellowView addConstraint:yellowViewHeightC];
    
    //添加一个距离红色View右边20的约束,参照物是redView
    NSLayoutConstraint *yellowVLeftRedVC = [NSLayoutConstraint constraintWithItem:yellowView attribute:NSLayoutAttributeLeftMargin relatedBy:NSLayoutRelationEqual toItem:redView attribute:NSLayoutAttributeRightMargin multiplier:1.0f constant:20.0];
    //将他的优先级的调整到UILayoutPriorityDefaultHigh
    yellowVLeftRedVC.priority = UILayoutPriorityDefaultHigh;
    //参照物是redView,添加到目标父View上
    [self.view addConstraint:yellowVLeftRedVC];

以上内容是Autolayout最基础的知识,下一期说一说Masonry的使用。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,185评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,445评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,684评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,564评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,681评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,874评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,025评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,761评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,217评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,545评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,694评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,351评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,988评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,778评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,007评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,427评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,580评论 2 349