zoukankan      html  css  js  c++  java
  • 多视图控制器--自动布局 3.5 4.0英寸的应用程序

    更多技术性文章请关注 合伙呀

    自动布局:通过创建约束条件来完成在系统内定制用户界面位置和大小的方法
     UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect];
        [button setTitle:@"我是按钮" forState:UIControlStateNormal];
        button.backgroundColor=[UIColor whiteColor];
        [self.view addSubview:button];
        //当视图需要使用约束条件自动布局功能时,需要关闭视图的自动改变大小功能
        [button setTranslatesAutoresizingMaskIntoConstraints:NO];
        
        //创建横向约束条件
        NSArray *contraintsH=[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-20-[button]-20-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(button)];
        //创建竖向约束条件
        NSArray *contraintsV=[NSLayoutConstraint constraintsWithVisualFormat:@"V:[button(30)]-20-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(button)];
        //将约束条件添加到根视图上
        [self.view addConstraints:contraintsH];
        [self.view addConstraints:contraintsV];
        
        UIView *view=[[UIView alloc]init];
        view.backgroundColor=[UIColor redColor];
        [self.view addSubview:view];
        
        [view setTranslatesAutoresizingMaskIntoConstraints:NO];
        view.center=self.view.center;
        NSArray *ViewcontraintsH=[NSLayoutConstraint constraintsWithVisualFormat:@"H:[view(100)]" options:0 metrics:nil views:NSDictionaryOfVariableBindings(view,button)];
        NSArray *viewContraintsV=[NSLayoutConstraint constraintsWithVisualFormat:@"V:[view(200)]-30-[button]" options:0 metrics:nil views:NSDictionaryOfVariableBindings(view,button)];
        [self.view addConstraints:ViewcontraintsH];
        [self.view addConstraints:viewContraintsV];

  • 相关阅读:
    二分和牛顿法实现开根号
    leetcode 44. 通配符匹配
    leetcode 91. 解码方法
    leetcode 236. 二叉树的最近公共祖先
    leetcode 39. 组合总数
    leetcode:146. LRU缓存机制
    leetcode:124. 二叉树中的最大路径和
    二叉树前序遍历,中序遍历,后序遍历以及层次遍历实现
    leetcode: 4. 寻找两个有序数组的中位数
    Leetcode: 43. 接雨水
  • 原文地址:https://www.cnblogs.com/huntaiji/p/3471040.html
Copyright © 2011-2022 走看看