I'm trying to create a perfectly to-scale view with interface builder. So far, everything is good. I'm scaling the font, buttons, etc programmatically.. the only problem is the constraints (the spacing) between elements which remains the same. I want to avoid creating outlets for the spacing constraints because it seems messy. I want the spacing between elements to remain proportional as i stretch the element. right now everything is aligned based on the left side of the screen. if i stretch my view, everything stays left aligned. I want it to all stretch apart proportionally. How can I accomplish this (preferably using interface builder)?
Select the text view in the project. and then click Edit in the constraint in the inspector. You'll find the multiplier text box there. Change the multiplier to 1:3 and you will see the button be three times as large as the text view.
Auto Layout is a constraint-based layout system. It allows developers to create an adaptive interface that responds appropriately to changes in screen size and device orientation.
Multiplier is there for creating Proportional Constraint. Auto Layout calculates the first item's attribute to be the product of the second item's attribute and this multiplier . Any value other than 1 creates a proportional constraint.
A vanilla UIView instance, for example, does not have an intrinsic content size. This means that you need to add four explicit constraints to describe the size and position of a UIView instance in a user interface.
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:
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With