Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get rid of the -16 when doing horizontal layout to the edge of the superview in Xcode 6?

When you try to layout a view to the edge of its super view in Xcode 6 storyboards the constraint that is generated has a constant of -16. Why is this, and how can I make it back to 0?

like image 762
James Snook Avatar asked Sep 10 '14 14:09

James Snook


1 Answers

The -16 is because the constraint is set against the Superview.trailing/leading Margin not the edge of the superview. You can fix this by selecting the constraint and in the info in the top right select the drop down for the superview item and toggle the relative to margin to off.enter image description here

like image 154
James Snook Avatar answered Nov 15 '22 07:11

James Snook