IOS手動添加的View 在代碼中使用(自動布局)autoLayout

來源:互聯網
上載者:User

標籤:blog   io   color   os   使用   div   on   log   代碼   

- (void)viewDidLoad {    [super viewDidLoad];        UIButton *btnTest = [UIButton buttonWithType:UIButtonTypeCustom];//不需要去刻意指定x,y的座標,可以用CGRectZero    btnTest.backgroundColor = [UIColor redColor];    btnTest.layer.borderColor = [UIColor yellowColor].CGColor;    btnTest.layer.borderWidth = 2.0;    [self.view addSubview:btnTest];            [btnTest setTranslatesAutoresizingMaskIntoConstraints:NO];//將使用AutoLayout的方式布局    //btnTest頂部相對於self.view的頂部距離為100    NSLayoutConstraint *constraintTop = [NSLayoutConstraint constraintWithItem:btnTest attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTop multiplier:1.0 constant:100];    //btnTest左側相對於self.view的左側距離為100    NSLayoutConstraint *constraintLeft = [NSLayoutConstraint constraintWithItem:btnTest  attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeLeft multiplier:1.0 constant:100];    //btnTest右側相對於self.view的右側距離為100    NSLayoutConstraint *constraintRight = [NSLayoutConstraint constraintWithItem:self.view  attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:btnTest attribute:NSLayoutAttributeRight multiplier:1.0 constant:100];    //btnTest底部相對於self.view的底部距離為100    NSLayoutConstraint *constraintBottom = [NSLayoutConstraint constraintWithItem:self.view attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:btnTest attribute:NSLayoutAttributeBottom multiplier:1.0 constant:100];    //水平置中    NSLayoutConstraint *constraintXCenter = [NSLayoutConstraint constraintWithItem:btnTest attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:00.0f];    //垂直置中     NSLayoutConstraint *constraintYCenter = [NSLayoutConstraint constraintWithItem:btnTest attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:00.0f];        //將約束添加到父視圖中    [self.view addConstraint:constraintTop];    [self.view addConstraint:constraintLeft];    [self.view addConstraint:constraintRight];    [self.view addConstraint:constraintBottom];    [self.view addConstraint:constraintXCenter];    [self.view addConstraint:constraintYCenter];    }

  

IOS手動添加的View 在代碼中使用(自動布局)autoLayout

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.