How can I trigger an update to all the autolayout constraints?

Viewed 30045

I modified programmatically one autolayout constraint. It takes effect on one certain view, but other views that are bound with other constraints to that view, do not change their positions. Is there an "updateAllConstraints" method?

4 Answers

Those of you that come across this topic, and are looking where to find this in the menus.

Best I have found is:

  1. Select the items that you want to "pop" back to your constraints

  2. Top menu: Editor/Update Frames (or/) shortcut: command + option + =

Hopefully this helps

Related