学习AutoLayout(VFL)

作者: guaker | 来源:发表于2015-03-11 14:53 被阅读4870次

    NSLayoutConstraint的第二个类方法
    + (NSArray *)constraintsWithVisualFormat:(NSString *)format
    options:(NSLayoutFormatOptions)opts
    metrics:(NSDictionary *)metrics
    views:(NSDictionary *)views;

    • 其中format就是VFL字符串,比如@"H:|-10-[view]-20-|",一会详细说明。
    • opts是枚举参数,默认是0
      typedef NS_OPTIONS(NSUInteger, NSLayoutFormatOptions) {
      NSLayoutFormatAlignAllLeft = (1 << NSLayoutAttributeLeft),
      NSLayoutFormatAlignAllRight = (1 << NSLayoutAttributeRight),
      NSLayoutFormatAlignAllTop = (1 << NSLayoutAttributeTop),
      NSLayoutFormatAlignAllBottom = (1 << NSLayoutAttributeBottom),
      NSLayoutFormatAlignAllLeading = (1 << NSLayoutAttributeLeading),
      NSLayoutFormatAlignAllTrailing = (1 << NSLayoutAttributeTrailing),
      NSLayoutFormatAlignAllCenterX = (1 << NSLayoutAttributeCenterX),
      NSLayoutFormatAlignAllCenterY = (1 << NSLayoutAttributeCenterY),
      NSLayoutFormatAlignAllBaseline = (1 << NSLayoutAttributeBaseline),
      NSLayoutFormatAlignAllLastBaseline = NSLayoutFormatAlignAllBaseline,
      NSLayoutFormatAlignAllFirstBaseline NS_ENUM_AVAILABLE_IOS(8_0) = (1 << NSLayoutAttributeFirstBaseline),
      NSLayoutFormatAlignmentMask = 0xFFFF,
      /* choose only one of these three
      */
      NSLayoutFormatDirectionLeadingToTrailing = 0 << 16, // default
      NSLayoutFormatDirectionLeftToRight = 1 << 16,
      NSLayoutFormatDirectionRightToLeft = 2 << 16,
      NSLayoutFormatDirectionMask = 0x3 << 16,
      };
    • metrics是自定义的一个字典,这个字典里面的key可以写在format字串中。编译器解析时,自动替换为metrics字典中的value。比如:
      NSDictionary * metrics = @{@"left":@5,@"right":@5,@"height":@150.0};
      NSString * format = @"|-left-[view]-right-|";
      这个一看就明白的,不用这个,设置为nil
    • views是设置约束所有view的字典。比如:
      NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings(view);
      这个宏的作用是把view映射成字典[NSDictionary dictionaryWithObjectsAndKeys:view, @"view", nil];

    VFL

    苹果开发团队可能觉得添加单个constraint的API比较长,于是就有了VFL(Visual format language)
    上面提到的@"H:|-10-[view]-20-|",意思就是view距离superview的左边10点,右边20点,这样是不是就可以确定了这个view的宽度了?
    其中H:表示横向,|表示父视图边缘,-10-表示10点距离,[view]表示子视图。
    下面详细说明,参考:AutoLayout详解+手把手实战
    V:表示纵向
    H:表示横向
    |表示父视图边缘
    -表示距离
    >=表示视图间距、宽度或高度必须大于或等于某个值
    <=表示视图间距、宽度或高度必须小宇或等于某个值
    ==表示视图间距、宽度或高度必须等于某个值
    @表示>=<===限制,最大为1000

    示例:

    1. |-[view]-|视图处在父视图的左右边缘内
    1. |-[view]视图处在父视图的左边缘
    2. |[view]视图和父视图左边对齐
    3. -[view]-设置视图的宽度高度
    4. |-30.0-[view]-30.0-|表示离父视图 左右间距30
    5. [view(200.0)]表示视图宽度为200.0
    6. |-[view(view1)]-[view1]-|表示视图宽度一样,并且在父视图左右边缘内
    7. V:|-[view(50.0)]视图高度为50
    8. V:|-(==padding)-[imageView]->=0-[button]-(==padding)-|表示离父视图的距离
      Padding,这两个视图间距必须大于或等于0并且距离底部父视图为padding
    9. [wideView(>=60@700)]视图的宽度为至少为60不能超过 700
    10. 如果没有声明方向默认为水平H:(原文写的V:

    代码

    UIView *view = [[UIView alloc] init];
    view.backgroundColor = [UIColor brownColor];
    view.translatesAutoresizingMaskIntoConstraints = NO;
    [self.view addSubview:view];
    
    //通过宏映射成[NSDictionary dictionaryWithObjectsAndKeys:v1, @"v1", v2, @"v2", nil];
    NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings(view);
    //约束1 横向
    [self.view addConstraints:
     [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-10-[view]-20-|"
                                             options:0
                                             metrics:nil
                                               views:viewsDictionary]];
    //约束2 纵向
    [self.view addConstraints:
     [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-100-[view]-200-|"
                                             options:0
                                             metrics:nil
                                               views:viewsDictionary]];
    

    效果图

    VFL
    持续更新,项目中适配遇到的问题就写出来,下篇介绍scrollView使用autoLayout

    相关文章

      网友评论

      • fd5657ed541e:10. [wideView(>=60@700)]视图的宽度为至少为60不能超过 700

        700 是 priority
      • 无神:(A+B)整体相对于C居中,C为A和B的父视图,这种布局如何使用VFL实现?
      • Joy___:晕 [wideView(>=60@700)]视图的宽度为至少为60不能超过 700
        @VALUE 表示优先级吧??
        iOS打怪升级:是的表示优先级
      • Joy___:nice
      • 3c32f188d5a4:很好,很简单

      本文标题:学习AutoLayout(VFL)

      本文链接:https://www.haomeiwen.com/subject/ujfbxttx.html