Use AutoLayout layout view to modify the frame solution in your code

Source: Internet
Author: User

You set the constraint for Aview using AutoLayout in Xib or storyboard, but you want Aview to make a simple animation, such as a simple animation that moves from the constrained a position (0,0,100,100) to the B position (0,66,100,100).

Then you'll find that if you set a constraint in Xib or storyboard, it doesn't work to modify the Aview frame directly in the code.

The result is no problem on the iOS7, but found on the iOS8 Aview moved from a to B, but returned a (the exact difference has not been found)

Solution:

Loginviewtopconstraint = [Nslayoutconstraint constraintWithItem:self.loginView attribute:nslayoutattributetop Relatedby:nslayoutrelationequal ToItem:self.view attribute:nslayoutattributetop multiplier:1.0 constant:66]; Defining New constraints

[Self.view removeconstraint:self.topconstraint];//Remove old constraint

[Self.view addconstraint:loginviewtopconstraint];//Add new constraint

[Self.view layoutifneeded];//makes the constraint effective

Use AutoLayout layout view to modify the frame solution in your code

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.