autolayout的使用原理及代码实现

2023-12-12 01:18

本文主要是介绍autolayout的使用原理及代码实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、
UIViewAutoresizing只能控制父子视图之间的布局
首先父视图要允许子视图自动伴随父视图变化而变化
然后子视图自己设置怎么伴随变化

设置 子视图 自动布局 1.必须父视图允许子视图自动布局 2.子视图自己设置布局方式


//父视图设置父子视图自适应/停靠模式
    _redView.autoresizesSubviews = YES;//允许子视图伴随父视图自动变化
//子视图设置子视图的自适应模式
    blueView.autoresizingMask


autolayout  iOS6的时候出来的  iPhone5出来了
sizeclass  iOS8的时候出来的

github

二.自动布局(多屏适配)
        1.为什么使用自动布局
            iphone手机的分辨率越来越多,有320*480,   640*960,  640*1136,  750*1334,  1080*1920
            使用代码控制frame坐标和大小的化,会花费大量时间精力.
            为了解决适配问题,苹果推出了自动布局

        2.自动布局原理
            通过给视图添加约束的方式,使视图在任何屏幕上都可以正常显示

        autolayout 用 constraints(约束) 来控制 控件的大小和位置

        auto layout 加约束条件 问题1:要么加少了 起不到作用,2.加多了产生了冲突 有可能崩溃

        3.如何给视图添加约束
            Xcode—>Editor—>Pin

        4.有哪些约束

                
            1).Width         //设置视图固定宽度
            2).Height        //设置视图固定高度
            
            3).Horizontal Spacing     //同级视图之间的横向间距
            4).Vertical Spacing        //同级视图之间的纵向间距
            
            5).Leading Space to SuperView       //与父视图的左间距
            6).Trailing Space to SuperView         //与父视图的右间距
            7).Top Space to SuperView              //与父视图的上间距
            8).Botton Space to SuperView        //与父视图的下间距

            9).Widths Equally                               //设置同级视图宽度比例
            10).Height Equally         //设置同级视图高度比例  

    NSLayoutConstraint *constraint =
    [NSLayoutConstraint
     constraintWithItem:self.contentView
              attribute:NSLayoutAttributeWidth
              relatedBy:NSLayoutRelationEqual
                 toItem:nil
              attribute:0
             multiplier:1.0
               constant:1000];
    
    NSLayoutConstraint *constraint2 =
    [NSLayoutConstraint
     constraintWithItem:self.contentView
     attribute:NSLayoutAttributeHeight
     relatedBy:NSLayoutRelationEqual
     toItem:nil
     attribute:0
     multiplier:1.0
     constant:200];
    
    [self.contentView addConstraint:constraint];
    [self.contentView addConstraint:constraint2];
    
    NSDictionary *views = NSDictionaryOfVariableBindings(_contentView);
    
//    NSDictionary *dict = @{@"_contentView": _contentView};
    
    NSArray *constraints =
    [NSLayoutConstraint constraintsWithVisualFormat:@"H:[_contentView(1000)]" options:0 metrics:nil views:views];
    NSArray *constraints2 = [NSLayoutConstraint constraintsWithVisualFormat:@"V:[_contentView(200)]" options:0 metrics:nil views:views];
    
    [_contentView addConstraints:constraints];
    [_contentView addConstraints:constraints2];

===================================================
VFL 语言添加约束

UIView *redView = [[UIView alloc] initWithFrame:CGRectZero];
    redView.backgroundColor = [UIColor redColor];
    // 通常都设置成NO
    redView.translatesAutoresizingMaskIntoConstraints = NO;
    [self.view addSubview:redView];
    
    UIView *blueView = [[UIView alloc] initWithFrame:CGRectZero];
    blueView.backgroundColor = [UIColor blueColor];
    // 通常都设置成NO
    blueView.translatesAutoresizingMaskIntoConstraints = NO;
    [self.view addSubview:blueView];
    
    NSDictionary *views = NSDictionaryOfVariableBindings(redView, blueView);
    //NSDictionary *dict = @{@“redView”:redView,@“blueView”: blueView};


    NSArray *constraints =
    [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-100-[redView(100)]" options:0 metrics:nil views:views];
    [self.view addConstraints:constraints];
    
    NSArray *constraints2 =
    [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-100-[redView(50)]" options:0 metrics:nil views:views];
    [self.view addConstraints:constraints2];
    
    NSArray *constraints3 =
    [NSLayoutConstraint constraintsWithVisualFormat:@"H:[redView]-50-[blueView(==redView)]" options:0 metrics:nil views:views];
    [self.view addConstraints:constraints3];
    
    NSArray *constraints4 =
    [NSLayoutConstraint constraintsWithVisualFormat:@"V:[redView]-50-[blueView(==redView)]" options:0 metrics:nil views:views];
    [self.view addConstraints:constraints4];



        5.用代码做自动布局
            
            使用第三方Masonry库

             [topView mas_makeConstraints:^(MASConstraintMaker *make) {
                        make.top.equalTo(self.view.mas_top).with.offset(0);    //topView上边距与self.view上边距为0
                        make.left.equalTo(self.view.mas_left).with.offset(0);    //topView左边距与self.view左边距为0
                        make.right.equalTo(self.view.mas_right).with.offset(0);    //topView右边距与self.view右边距为0
                        make.height.equalTo(@64);                                            //topView宽度固定为64个像素
                    }];


                [tableView mas_makeConstraints:^(MASConstraintMaker *make) {
                        make.top.equalTo(topView.mas_bottom).with.offset(0);        //tableView上边距与self.view下边距为0
                         make.bottom.equalTo(bottomView.mas_top).with.offset(0);    //tableView下边距与self.view上边距为0
                         make.left.equalTo(self.view.mas_left).with.offset(0);                //tableView左边距与self.view左边距为0
                         make.right.equalTo(self.view.mas_right).with.offset(0);            //tableView右边距与self.view右边距为0
                }];
//从下往上,从右往左,都是倒推,是负数.
UIButton *topButton  = [UIButton buttonWithType:UIButtonTypeSystem];
    topButton.backgroundColor = [UIColor grayColor];
    [topView addSubview:topButton];
    [topButton mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(topView.mas_top).with.offset(20);
        //从下往上,从右往左,都是倒推,是负数.
        make.bottom.equalTo(topView.mas_bottom).with.offset(-5);
        make.right.equalTo(topView.mas_right).with.offset(-20);
        make.width.equalTo(@100);
    }];            
[table mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.equalTo(self.view.mas_left).with.offset(0);
        make.right.equalTo(self.view.mas_right).with.offset(0);
        //table的上边距和topView的下边距为0
        make.top.equalTo(topView.mas_bottom).with.offset(0);
         //table的下边距和bottomView的上边距为0
        make.bottom.equalTo(bottomView.mas_top).with.offset(0);
    }];

这篇关于autolayout的使用原理及代码实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/482735

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

深入探索协同过滤:从原理到推荐模块案例

文章目录 前言一、协同过滤1. 基于用户的协同过滤(UserCF)2. 基于物品的协同过滤(ItemCF)3. 相似度计算方法 二、相似度计算方法1. 欧氏距离2. 皮尔逊相关系数3. 杰卡德相似系数4. 余弦相似度 三、推荐模块案例1.基于文章的协同过滤推荐功能2.基于用户的协同过滤推荐功能 前言     在信息过载的时代,推荐系统成为连接用户与内容的桥梁。本文聚焦于

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

hdu4407(容斥原理)

题意:给一串数字1,2,......n,两个操作:1、修改第k个数字,2、查询区间[l,r]中与n互质的数之和。 解题思路:咱一看,像线段树,但是如果用线段树做,那么每个区间一定要记录所有的素因子,这样会超内存。然后我就做不来了。后来看了题解,原来是用容斥原理来做的。还记得这道题目吗?求区间[1,r]中与p互质的数的个数,如果不会的话就先去做那题吧。现在这题是求区间[l,r]中与n互质的数的和