Autolayout (Automatic Layout)

Source: Internet
Author: User

The VFL language implements the following interface:

-(Void) viewdidload

{

[Super viewdidload];

// Create the view above

Uiview * topview = [[uiview alloc] init];

Topview. backgroundcolor = [uicolor redcolor];

[Self. View addsubview: topview];

Topview. translatesautoresizingmaskintoconstraints = no;

// Create the following view

Uiview * bottomview = [[uiview alloc] init];

Bottomview. backgroundcolor = [uicolor bluecolor];

[Self. View addsubview: bottomview];

Bottomview. translatesautoresizingmaskintoconstraints = no;

// Use the VFL Language

// Create constraints (vertical)

Nsinteger Gap = 20;

Nsarray * vertic1c = [nslayoutconstraint constraintswithvisualformat: @ "V: |-gap-[topview (= 50)]-gap-[bottomview (= topview)]" Options: nslayoutformatalignallright metrics: @ {@ "gap": @ (GAP)} views: @ {@ "topview": topview, @ "bottomview": bottomview}];

[Self. View addconstraints: verticalb];

Nsarray * herizontopc = [nslayoutconstraint constraintswithvisualformat: @ "H: |-gap-[topview]-gap-|" Options: nslayoutformatalignallright metrics: @ {@ "gap ": @ (GAP)} views: @ {@ "topview": topview}];

[Self. View addconstraints: herizontopc];

Nslayoutconstraint * contraintbottom = [nslayoutconstraint constraintwithitem: bottomview attribute: nslayoutattributewidth relatedby: Too toitem: topview attribute: Too multiplier: 0.5 constant: 0];

[Self. View addconstraint: contraintbottom];

}

Autolayout (Automatic Layout)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.