IOS开发之PureLayout的使用

PureLayout下载地址

https://github.com/PureLayout/PureLayout

PureLayout布局使用

    UIView *myview=[[UIView alloc]init];
    UILabel *label=[[UILabel alloc]init];
    UIButton *btn=[[UIButton alloc]init];
    myview.translatesAutoresizingMaskIntoConstraints=NO;
    label.translatesAutoresizingMaskIntoConstraints=NO;
    btn.translatesAutoresizingMaskIntoConstraints=NO;
    [self.view addSubview:myview];
    [self.view addSubview:label];
    [self.view addSubview:btn];

接下来我们就来看看purelayout封装了哪些好用的布局方法:

 // myview左边距离父视图左边 10 点.
    [myview autoPinEdgeToSuperviewEdge:ALEdgeLeading withInset:10.f];
    
    // myview1顶边距离父视图顶部 10 点.
    [myview autoPinEdgeToSuperviewEdge:ALEdgeTop withInset:10.f];
    
    // myview的左边位于btn的右边 10 点的地方.
    [myview autoPinEdge:ALEdgeLeading toEdge:ALEdgeTrailing ofView:btn withOffset:10.f];
    
    // myview的右边位于btn左边 -10 点的地方, 从右往左、从下往上布局时数值都是负的。
    [myview autoPinEdge:ALEdgeTrailing toEdge:ALEdgeLeading ofView:btn withOffset:-10.f];
    
    // 根据label的固有内容尺寸设置它的尺寸
    [label autoSetDimensionsToSize:CGSizeMake(10.f, 10.f)];
    
    // myview、label、btn水平对齐。(意思就是说只需要设置其中一个的垂直约束(y)即可)(这个可以设置多个view水平对齐)
    [@[myview, label, btn] autoAlignViewsToAxis:ALAxisHorizontal];

    //myview,label水平对齐(这个是针对两个view的水平对齐)
    [myview autoAlignAxis:ALAxisHorizontal toSameAxisOfView:label];
    
    // myview顶部距离label的底部 10 点.
    [myview autoPinEdge:ALEdgeTop toEdge:ALEdgeBottom ofView:label withOffset:10.f];
    
    // myview左边紧贴父视图左边
    [myview autoPinEdgeToSuperviewEdge:ALEdgeLeading];
    
    // myview的宽度等于父视图的宽度
    [myview autoMatchDimension:ALDimensionWidth toDimension:ALDimensionWidth ofView:self.view];
    
    // myview的宽度设置为50
    [myview autoSetDimension:ALDimensionWidth toSize:30];
    
    // myview与label左对齐
    [myview autoPinEdge:ALEdgeLeading toEdge:ALEdgeLeading ofView:label];
    
    // myview与label水平对齐
    [myview autoAlignAxis:ALAxisHorizontal toSameAxisOfView:label];
    
    //myview右边雨label左边的距离大于等于20
    [myview autoPinEdge:ALEdgeTrailing toEdge:ALEdgeLeading ofView:label withOffset:20.f relation:NSLayoutRelationGreaterThanOrEqual];

    //myview和btn同宽(同高也一样)
    [@[myview,btn] autoMatchViewsDimension:ALDimensionWidth];//这种可以设置多个view同宽
    [myview autoMatchDimension:ALDimensionWidth toDimension:ALDimensionWidth ofView:btn];//这种只能设置两个view同宽

注意:这里我主要讲一下NSLayoutAttributeLeft ,NSLayoutAttributeRight,和NSLayoutAttributeLeading,NSLayoutAttributeTrailing之间的区别。
其实在中国, NSLayoutAttributeLeft 和 NSLayoutAttributeLeading 是一个效果的,因为我们布局习惯从左到右。但在有些国家地区,NSLayoutAttributeRight和NSLayoutAttributeLeading 是一个效果,布局习惯从右往左。这点我们大可放心,建议大家还是使用NSLayoutAttributeLeading,NSLayoutAttributeTrailing来表示左和右。

PureLayout更改约束

我们点击它的方法进去先看一下:

- (NSLayoutConstraint *)autoAlignAxisToSuperviewMarginAxis:(ALAxis)axis
{
    self.translatesAutoresizingMaskIntoConstraints = NO;
    ALView *superview = self.superview;
    NSAssert(superview, @"View's superview must not be nil.\nView: %@", self);
    ALMarginAxis marginAxis = [NSLayoutConstraint al_marginAxisForAxis:axis];
    return [self autoConstrainAttribute:(ALAttribute)axis toAttribute:(ALAttribute)marginAxis ofView:superview];
}

#endif /* __PureLayout_MinBaseSDK_iOS_8_0 */


#pragma mark Pin Edges to Superview

/**
 Pins the given edge of the view to the same edge of its superview.
 
 @param edge The edge of this view and its superview to pin.
 @return The constraint added.
 */
- (NSLayoutConstraint *)autoPinEdgeToSuperviewEdge:(ALEdge)edge
{
    return [self autoPinEdgeToSuperviewEdge:edge withInset:0.0];
}

/**
 Pins the given edge of the view to the same edge of its superview with an inset.
 
 @param edge The edge of this view and its superview to pin.
 @param inset The amount to inset this view's edge from the superview's edge.
 @return The constraint added.
 */
- (NSLayoutConstraint *)autoPinEdgeToSuperviewEdge:(ALEdge)edge withInset:(CGFloat)inset
{
    return [self autoPinEdgeToSuperviewEdge:edge withInset:inset relation:NSLayoutRelationEqual];
}

发现这些方法都会返回一个NSLayoutConstraint。那么更新就好办了

//首先定义好一个NSLayoutConstraint属性
@property (nonatomic, strong)NSLayoutConstraint *myyueshu;
//如果我们点击按钮需要更改某个view的高度从100到200
    UIView *myview = [[UIView alloc]init];
    self.myview = myview;
    [self.view addSubview:myview];
    myview.backgroundColor = [UIColor redColor];
    [self.view addSubview:myview];
    myview.translatesAutoresizingMaskIntoConstraints = NO;
    [myview autoPinEdgeToSuperviewEdge:ALEdgeLeading];
    [myview autoPinEdgeToSuperviewEdge:ALEdgeTrailing];
    [myview autoPinEdgeToSuperviewEdge:ALEdgeTop];
//    [myview autoSetDimension:ALDimensionHeight toSize:100];
    self.myyueshu =  [myview autoSetDimension:ALDimensionHeight toSize:100];

    UIButton *btn = [[UIButton alloc]init];
    [self.view addSubview:btn];
    btn.frame = CGRectMake(10, 400, 40, 40);
    btn.backgroundColor = [UIColor redColor];
    [btn addTarget:self action:@selector(btnclick) forControlEvents:UIControlEventTouchUpInside];

把设置高度从原先的100变为200,我们直接改变了它的约束数值

- (void)btnclick{
    self.myyueshu.constant = 200;
    
}

或者先把原先的那个约束移除,然后重新添加新的约束。

- (void)btnclick{
    
    [self.myyueshu autoRemove];
    self.myyueshu = [self.myview autoSetDimension:ALDimensionHeight toSize:200];
}

如果我们需要把所有约束都重写,以上代码也可以做到,只是要定义4个约束属性,然后各个移除而已。当然我们也可以用别的方法

//首先定义好一个数组NSArray
@property (nonatomic, strong) NSArray *contentConstrains;
//接着在viewDidLoad中实现以下代码:
    UIView *myview = [[UIView alloc]init];
    self.myview = myview;
    [self.view addSubview:myview];
    myview.backgroundColor = [UIColor redColor];
    [self.view addSubview:myview];
    myview.translatesAutoresizingMaskIntoConstraints = NO;
    NSLayoutConstraint *s1 = [myview autoPinEdgeToSuperviewEdge:ALEdgeLeading];
    NSLayoutConstraint *s2 = [myview autoPinEdgeToSuperviewEdge:ALEdgeTrailing];
    NSLayoutConstraint *s3 = [myview autoPinEdgeToSuperviewEdge:ALEdgeTop];
    NSLayoutConstraint *s4 = [myview autoSetDimension:ALDimensionHeight toSize:100];
    self.contentConstrains = [NSArray arrayWithObjects:s1,s2,s3,s4, nil];
    
    UIButton *btn = [[UIButton alloc]init];
    [self.view addSubview:btn];
    btn.frame = CGRectMake(10, 400, 40, 40);
    btn.backgroundColor = [UIColor redColor];
    [btn addTarget:self action:@selector(btnclick) forControlEvents:UIControlEventTouchUpInside];

这样也可以实现整体更改约束。

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

推荐阅读更多精彩内容