iOS: 在代码中使用Autolayout

原理:IOS6.0 之后,苹果优化了UI界面的布局方式,提出了自动布局的概念,和之前的autoresizing相比功能更强大。子视图基于父视图的自动布局显示。都是父视图去添加对子视图的约束。

在这里主要说的是通过代码对自动布局视图的实现。

代码中一般用到的有两个添加约束的方式:

1.- (void)addConstraint:(NSLayoutConstraint *)constraint NS_AVAILABLE_IOS(6_0);

2.- (void)addConstraints:(NSArray *)constraints NS_AVAILABLE_IOS(6_0);

<

在使用自动布局之前要对子视图的布局方式进行调整,用到这个UIView的属性。

- (BOOL)translatesAutoresizingMaskIntoConstraints NS_AVAILABLE_IOS(6_0); // Default YES

需要将其设置为NO;

>

下面用简单例子说明一下:

(1) – 按比例缩放和优先级

首先说按比例缩放,这是在Interface Builder中无法设置的内容。而在代码中,使用NSLayoutConstraint类型的初始化函数中的multiplier参数就可以非常简单的设置按比例缩放。同时也可以设置不同NSLayoutAttribute参数来达到意想不到的效果,比如“A的Width等于B的Height的2倍”这样的效果。

 1    topLabel= [[UILabel alloc] initWithFrame:CGRectZero];
 2     topLabel.translatesAutoresizingMaskIntoConstraints = NO;
 3     topLabel.backgroundColor = [UIColor lightGrayColor];
 4     topLabel.numberOfLines = 0;
 5     topLabel.text = @"选我选我选我选我选我选我";
 6     topLabel.userInteractionEnabled = YES;
 7     UITapGestureRecognizer *tt = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(nextContro)];
 8     [topLabel addGestureRecognizer:tt];
 9     [self.view addSubview:topLabel];
10
11     secondLabel = [[UILabel alloc] initWithFrame:CGRectZero];
12     secondLabel.translatesAutoresizingMaskIntoConstraints = NO;
13     secondLabel.backgroundColor = [UIColor cyanColor];
14     secondLabel.text = @"按我";
15     secondLabel.userInteractionEnabled = YES;
16     UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(changeThirdLabel:)];
17     [secondLabel addGestureRecognizer:tap];
18     [self.view addSubview:secondLabel];
19
20     thirdLabel = [[UILabel alloc] initWithFrame:CGRectZero];
21     thirdLabel.translatesAutoresizingMaskIntoConstraints = NO;
22     thirdLabel.backgroundColor = [UIColor purpleColor];
23     thirdLabel.numberOfLines = 0;
24     thirdLabel.text = str;
25     [self.view addSubview:thirdLabel];

设置firstLabel的布局

1 NSLayoutConstraint *widthConstraint = [NSLayoutConstraint constraintWithItem:topLabel attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeWidth multiplier:1 constant:0];
2     NSLayoutConstraint *heightConstraint = [NSLayoutConstraint constraintWithItem:topLabel attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeHeight multiplier:0.2 constant:0];
3
4     [self.view addConstraint:widthConstraint];
5     [self.view addConstraint:heightConstraint];

设置secondLabel的位置

1 //设置view之间长度相等,并且在试图在边缘内(超过边缘自动往下)
2     [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[topLabel][secondLabel(==topLabel)]|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(topLabel, secondLabel)]];
3
4     //设置高度,距顶部20,之间间隔10,secondLabel高度为30,只是上面对齐下面不对齐
5     [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-20-[topLabel(>[email protected])]-10-[secondLabel(==30)]" options:0 metrics:nil views:NSDictionaryOfVariableBindings(topLabel, secondLabel)]];

设置thirdLabel的位置并根据文本动态显示高度

 1  //水平居中,始终距离父View底部20单位的距离。然后高度是父View高度的5分之一
 2     //居中
 3     [self.view addConstraint:[NSLayoutConstraint constraintWithItem:thirdLabel attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeCenterX multiplier:1 constant:0]];
 4      //距离底部50,注意NSLayoutConstraint创建的constant是加在toItem参数的,所以需要-20。
 5     [self.view addConstraint:[NSLayoutConstraint constraintWithItem:thirdLabel attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeBottom multiplier:1 constant:-50]];
 6     //定义高度是父View的5分之一
 7 //    [self.view addConstraint:[NSLayoutConstraint constraintWithItem:thirdLabel attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeHeight multiplier:0.5 constant:0]];
 8
 9     NSLayoutConstraint *constraint = [NSLayoutConstraint constraintWithItem:thirdLabel attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeWidth multiplier:1 constant:0];
10     constraint.priority = UILayoutPriorityDefaultHigh;
11     [self.view addConstraint:constraint];
12     //最小高度为150
13     [thirdLabel addConstraint:[NSLayoutConstraint constraintWithItem:thirdLabel attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationGreaterThanOrEqual toItem:nil attribute:NSLayoutAttributeHeight multiplier:1 constant:150]];
14
15     //注册KVO方法
16     [thirdLabel addObserver:self forKeyPath:@"bounds" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionInitial context:nil];
//KVO回掉
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
    if (object == thirdLabel && [keyPath isEqualToString:@"bounds"]) {
//        thirdLabel.text = str;
//        thirdLabel.text = @"ha";
//        thirdLabel.text = NSStringFromCGSize(thirdLabel.bounds.size);
    }
}

可以设置空间展示的动画效果

 [UIView animateWithDuration:0.5 animations:^{
        [self.view layoutIfNeeded];
    }];

(2) – intrinsicContentSize和Content Hugging Priority

先说intrinsicContentSize,也就是控件的内置大小。比如UILabel,UIButton等控件,他们都有自己的内置大小。控件的内置大小往往是由控件本身的内容所决定的,比如一个UILabel的文字很长,那么该UILabel的内置大小自然会很长。控件的内置大小可以通过UIView的intrinsicContentSize属性来获取内置大小,也可以通过invalidateIntrinsicContentSize方法来在下次UI规划事件中重新计算intrinsicContentSize。如果直接创建一个原始的UIView对象,显然它的内置大小为0。

继续用代码来写Autolayout,先写一个辅助方法来快速设置UIView的边距限制:

1 //设置Autolayout中的边距辅助方法
2 - (void)setEdge:(UIView*)superview view:(UIView*)view attr:(NSLayoutAttribute)attr constant:(CGFloat)constant
3 {
4     [superview addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:attr relatedBy:NSLayoutRelationEqual toItem:superview attribute:attr multiplier:1.0 constant:constant]];
5 }

接下来,创建一个UIView,利用上面的辅助方法快速设置其在父控件的左,上,右边距为20单位。UIView默认是没有intrinsicContentSize的。我们可以通过创建一个自定义的UIView来改写intrinsicContentSize。

在MyView里添加:

- (CGSize)intrinsicContentSize {
    return CGSizeMake(0, 100); //controll设置了left以及right,故这里的width没效果
}

如下代码:

 1  //view1
 2     MyView *view1 = [[MyView alloc] init];
 3     view1.backgroundColor = [UIColor yellowColor];
 4     //不允许AutoresizingMask转换成Autolayout
 5     view1.translatesAutoresizingMaskIntoConstraints = NO;
 6     [self.view addSubview:view1];
 7     //设置左,上,右边距为20.
 8     [self setEdge:self.view view:view1 attr:NSLayoutAttributeLeft constant:20];
 9     [self setEdge:self.view view:view1 attr:NSLayoutAttributeTop constant:80];
10     [self setEdge:self.view view:view1 attr:NSLayoutAttributeRight constant:-20];
11
12
13     //view2
14     MyView *view2 = [MyView new];
15     view2.backgroundColor = [UIColor greenColor];
16     //不允许AutoresizingMask转换成Autolayout
17     view2.translatesAutoresizingMaskIntoConstraints = NO;
18     [self.view addSubview:view2];
19     //设置左,下,右边距为20.
20     [self setEdge:self.view view:view2 attr:NSLayoutAttributeLeft constant:20];
21     [self setEdge:self.view view:view2 attr:NSLayoutAttributeBottom constant:-80];
22     [self setEdge:self.view view:view2 attr:NSLayoutAttributeRight constant:-20];
1 //设置两个View上下间距为20
2     [self.view addConstraint:[NSLayoutConstraint constraintWithItem:view2 attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:view1 attribute:NSLayoutAttributeBottom multiplier:1.0 constant:20]];

设置view的Content Hugging Priority.Content Hugging Priority代表控件拒绝拉伸的优先级。优先级越高,控件会越不容易被拉伸。

还有一个Content Compression Resistance Priority代表控件拒绝压缩内置空间的优先级。优先级越高,控件的内置空间会越不容易被压缩。而这里的内置空间,就是上面讲的UIView的intrinsicContentSize。

可以直接通过UIView的setContentHuggingPriority:forAxis方法来设置控件的Content Hugging Priority,其中forAxis参数代表横向和纵向,本例中只需要设置纵向,所以传入UILayoutConstraintAxisVertical。整句代码:

[view2 setContentHuggingPriority:UILayoutPriorityDefaultHigh forAxis:UILayoutConstraintAxisVertical];

关于constraintsWithVisualFormat:函数介绍:

constraintsWithVisualFormat:参数为NSString型,指定Contsraint的属性,是垂直方向的限定还是水平方向的限定,参数定义一般如下:

V:|-(>=XXX) :表示垂直方向上相对于SuperView大于、等于、小于某个距离

若是要定义水平方向,则将V:改成H:即可

在接着后面-[]中括号里面对当前的View/控件 的高度/宽度进行设定;

options:字典类型的值;这里的值一般在系统定义的一个enum里面选取

metrics:nil;一般为nil ,参数类型为NSDictionary,从外部传入 //衡量标准

views:就是上面所加入到NSDictionary中的绑定的View

在这里要注意的是 AddConstraints  和 AddConstraint 之间的区别,一个添加的参数是NSArray,一个是NSLayoutConstraint

使用规则

|: 表示父视图

-:表示距离

V:  :表示垂直

H:  :表示水平

>= :表示视图间距、宽度和高度必须大于或等于某个值

<= :表示视图间距、宽度和高度必须小宇或等于某个值

== :表示视图间距、宽度或者高度必须等于某个值

@  :>=、<=、==  限制   最大为  1000

1.|-[view]-|:  视图处在父视图的左右边缘内

2.|-[view]  :   视图处在父视图的左边缘

3.|[view]   :   视图和父视图左边对齐

4.-[view]-  :  设置视图的宽度高度

5.|-30.0-[view]-30.0-|:  表示离父视图 左右间距  30

6.[view(200.0)] : 表示视图宽度为 200.0

7.|-[view(view1)]-[view1]-| :表示视图宽度一样,并且在父视图左右边缘内

8. V:|-[view(50.0)] : 视图高度为  50

9: V:|-(==padding)-[imageView]->=0-[button]-(==padding)-| : 表示离父视图的距离

为Padding,这两个视图间距必须大于或等于0并且距离底部父视图为 padding。

10:  [wideView(>[email protected])]  :视图的宽度为至少为60 不能超过  700

11: 如果没有声明方向默认为  水平  V:

Demo地址:https://github.com/LiDechao/AutoLayout

时间: 2024-10-10 02:03:26

iOS: 在代码中使用Autolayout的相关文章

iOS: 在代码中使用Autolayout (2) – intrinsicContentSize和Content Hugging Priority【转】

原文:http://www.mgenware.com/blog/?p=491 接上文:iOS: 在代码中使用Autolayout (1) – 按比例缩放和优先级. 我们继续来看在代码中使用Autolayout的话题.先说intrinsicContentSize,也就是控件的内置大小.比如UILabel,UIButton等控件,他们都有自己的内置大小.控件的内置大小往往是由控件本身的内容所决定的,比如一个UILabel的文字很长,那么该UILabel的内置大小自然会很长.控件的内置大小可以通过UI

在代码中使用Autolayout (2) – intrinsicContentSize和Content Hugging Priority

接上文:iOS: 在代码中使用Autolayout (1) – 按比例缩放和优先级. 我们继续来看在代码中使用Autolayout的话题.先说intrinsicContentSize,也就是控件的内置大小.比如UILabel,UIButton等控件,他们都有自己的内置大小.控件的内置大小往往是由控件本身的内容所决定的,比如一个UILabel的文字很长,那么该UILabel的内置大小自然会很长.控件的内置大小可以通过UIView的intrinsicContentSize属性来获取内置大小,也可以通

在代码中使用Autolayout (1) – 按比例缩放和优先级

首先说按比例缩放,这是在Interface Builder中无法设置的内容.而在代码中,使用NSLayoutConstraint类型的初始化函数中的multiplier参数就可以非常简单的设置按比例缩放.同时也可以设置不同NSLayoutAttribute参数来达到意想不到的效果,比如“A的Width等于B的Height的2倍”这样的效果. OK,开始写代码,我们就拿一个简单的UIButton做示例,在ViewController中创建一个UIButton字段: UIButton *btn; 命

iOS 在xib或者storyboard中添加AutoLayout后,在代码中修改AutoLayout约束条件

如果是viewControl则AutoLayout适配写在- (void)updateViewConstraints方法中修改约束: 如果是view则AutoLayout适配 则在- (void)updateConstraints方法中修改. 可以直接把视图的约束像拖控件一样拖成属性直接在下面的方法里更改即可 //遍历self.myView控件中的约束,找到NSLayoutAttributeHeight控件高度这个约束关系,然后修改 -(void)updateViewConstraints {

驰骋工作流引擎-CCMobile与安卓、IOS集成过程中的问题与解决方案

CCMobile与安卓.IOS集成过程中的问题与解决方案 前言: CCMobile(2019版本)是CCFlow&JFlow 的一款移动端审批的产品.系统基于mui框架开发,是一款可以兼容Android与IOS的移动端工作流审批系统.由于CCMobile仅仅局限于移动端的流程审批,所以在其他办公功能方面很少,这时可能就需要在源码上开发或者与其他APP进行集成. 由于Mui是一款h5的框架,并不是原生的,所以在与原生APP集成时,会出现一些问题,主要集中在附件上传下载.屏幕兼容等.本文章,将具体描

iOS 自动布局扩展应用:代码中动态调整布局常量

一.设计需求 iOS Storyboard 自动布局技术,是iOS 6才出来的新技术,相当于多屏幕分辩率下自适应的技术. 但是一些复杂情况还是难处理. 比如有一个界面需求,进度条上显示标签,这个需求不难,难的是显要在显示表格框内,在各种机型显示正常. 最初设定是垂直居中向上偏15个像素 这是iPhone 4S 显示效果,下面与滑块还有错位 但是在iPhone 6下显示,下面有错位,但是上面留空太多 但如果把偏移量设为21.则出现另一种情况. 大屏幕的手机显示完美. 但是iPhone 4S下就错位

IOS 去掉代码html中的标签元素,获得纯文本

content是根据网址获得的网页源码字符串    NSRegularExpression *regularExpretion=[NSRegularExpression regularExpressionWithPattern:@"<[^>]*>|\n"  options:0  error:nil]; //替换所有html和换行匹配元素为"-"        content=[regularExpretion stringByReplacingMa

iOS --- 在NSObject子类的执行代码中实现UIViewController的跳转

在iOS开发中, 要实现UIViewController之间的跳转,通过navigationController的pushViewController或者UIViewController自身的presentViewController的方式即可.但要求是从一个UIViewController跳到另外一个UIViewController中.如果要从NSObject子类的执行代码中做跳转至UIViewController的操作, 要如何实现呢? 首先, 说明下为何会有这样的需求, 即: UIColl

使用autoLayout布局view,在代码中修改frame解决方案

在xib或者storyBoard中给aView使用autoLayout设定了约束,但是想让aView做一个简单的动画,比如从约束的A位置(0,0,100,100)移动到B位置(0,66,100,100)的简单动画. 那么你会发现,如果在xib或者storyBoard中设定了约束,在代码中直接修改aView的frame行不通的. 实现结果就是在ios7上没问题,但是在ios8上发现aView从A移动到B,但是又返回A(具体差别还没找到) 解决方案: loginViewTopConstraint =