美文网首页
使用系统自动布局方法-示例

使用系统自动布局方法-示例

作者: Boy_iOS | 来源:发表于2016-03-15 14:21 被阅读71次

[NSLayoutConstraint constraintsWithVisualFormat:<visual format string>options:<options>metrics:<metrics>views: <views dictionary>];

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(>=60@700)]  :视图的宽度为至少为60 不能超过  700 ,最大为1000

苹果官方示例代码

- (void)viewDidLoad {
    UIScrollView *scrollView;
    UIImageView *imageView;
    NSDictionary *viewsDictionary;
 
    // Create the scroll view and the image view.
    scrollView  = [[UIScrollView alloc] init];
    imageView = [[UIImageView alloc] init];
 
    // Add an image to the image view.
    [imageView setImage:[UIImage imageNamed:"MyReallyBigImage"]];
 
    // Add the scroll view to our view.
    [self.view addSubview:scrollView];
 
    // Add the image view to the scroll view.
    [scrollView addSubview:imageView];
 
    // Set the translatesAutoresizingMaskIntoConstraints to NO so that the views autoresizing mask is not translated into auto layout constraints.
    scrollView.translatesAutoresizingMaskIntoConstraints  = NO;
    imageView.translatesAutoresizingMaskIntoConstraints = NO;
 
    // Set the constraints for the scroll view and the image view.
    viewsDictionary = NSDictionaryOfVariableBindings(scrollView, imageView);
    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[scrollView]|" options:0 metrics: 0 views:viewsDictionary]];
    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[scrollView]|" options:0 metrics: 0 views:viewsDictionary]];
    [scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[imageView]|" options:0 metrics: 0 views:viewsDictionary]];
    [scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[imageView]|" options:0 metrics: 0 views:viewsDictionary]];
 
    /* the rest of your code here... */
}

相关文章

  • 使用系统自动布局方法-示例

    [NSLayoutConstraint constraintsWithVisualFormat:

  • flex布局

    flex 又名弹性布局,伸缩布局使用方法:在父容器内使用display:flex;自动对齐方法:justify-c...

  • NSLayoutConstraint学习笔记

    系统自动布局NSLayoutConstraint 学习笔记 目前为止,实现自动布局技术选型方面也可以使用xib和s...

  • UITableViewAutomaticDimension使得i

    在iOS11以下的系统,使用自动布局 UITableViewAutomaticDimension 必须实现- (...

  • Third Party

    A:推荐使用 B:修改使用 C:参考使用 自动布局Masonry(A)iOS自动布局框架-Masonry详解SDA...

  • 从零开始学习VFL (二)

    示例1 示例2 比例布局 vfl满足不了等比例里布局,因此需要额外用NSLayoutConstraint的方法实现...

  • 【OC梳理】自动布局

    自动布局基础篇 关于自动布局的基本使用,参考网上的文章即可,如:iOS开发-自动布局篇:史上最牛的自动布局教学! ...

  • UItableview滑动抖动和刷新位置上移

    1.抖动问题:使用系统方法自动布局会造成来回切换页面数据刷新时,上下滑动会一直抖动,设置header和footer...

  • iOS 界面适配右到左语言

    方向判断 1.自动布局. 建议使用自动布局,并且使用Leading和trailing,不建议使用left和righ...

  • layoutMargins和preservesSuperview

    文档解释 layoutMargins 使用这个属性用于指定视图和它的子视图之间的边距(单位使用点),自动布局系统使...

网友评论

      本文标题:使用系统自动布局方法-示例

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