简体   繁体   中英

UIView layout being reset

I am using a storyboard to create the initial state of my view . I then have a button that changes the layout (it expands a UITextView to take up half of the screen).

Whenever I try to alter the text of a label on the screen programatically the UIView is resetting to the storyboard layout.

Is there a method that resets a UIView to its initial state that is causing this to happen? Or any ideas why this is occurring?

You have autolayout turned on for your storyboard. The autolayout system will (at various times) set the position and size of every view in your view hierarchy based on the layout constraints in your storyboard.

You can either turn off autolayout in your storyboard , or you can resize the text view by modifying its layout constraints.

If you want to use autolayout and modify the constraints, watch at least the first of these three videos from WWDC 2012:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM