iOS - proportional spacing with autolayout iOS - proportional spacing with autolayout xcode xcode

iOS - proportional spacing with autolayout


Dummy views??? You must be kidding me. And if that's what Apple recommends - then I don't have much respect for them.

What you're clearly looking for is the central horizontal (Center X Alignment) constraint and then you just need to play with the multiplier while keeping the constant at 0:

enter image description here

The multiplier goes from 0-2

1 will place the center of the subview at the center of the superview.0 will place the center of the subview at the left edge of the superview.2 will place the center of the subview at the right edge of the superview.0.5 will place the center of the subview at 25% through the superview.1.5 will place the center of the subview at 75% through the superview.

Get rid of all those horizontal space constraints. And always think about multipliers - the constants of the constraints should always be set to 0.

Apple is obsessed with native resolution - they don't want your design to be scaled across different screen sizes. Screw them. Scaled resolution all the way.


Note - this is kind of a sketchy way of doing it.

I had a similar issue and resolved it by adding dummy views between my objects to represent the spacing between them. You can constrain the dummy views to scale proportionally to the rest of your views, which will make the spacing between your objects scale properly with the overall size. I set the hidden property of my dummy views so they wouldn't show up (note - they still get laid out properly when they are hidden).

Hope that helps.

Edit:

This method is imperfect (you have to clutter IB with extraneous views), but like @sha says it seems to be the only way to get it done.It turns out that other people have been giving similar advice. I came across these references which might be helpful:

AutoLayout to keep view sizes proportional

AutoLayout: layout consistency with proportional element spacing with 3.5" and 4" screens