How to align two buttons equidistance from the centre of the UIView
autolayout, ios, iphone, objective-c
Solution
I faced the same problem. I resolved using the idea i got from rdelmar's answer.
This is what I did.
For left button:
- Added the constraint to 'Center - Horizontally in container'
- Then changed the multiplier to 0.5 instead of 1 for that constraint.
For right button:
- Added the constraint to 'Center - Horizontally in container'
- Then changed the multiplier to 1.5 instead of 1 for that constraint.
Let me know if it worked for you.
Problem
I am working with auto layout . Facing on interesting issue . Fortunately overcame from it for the time but need to know the best way to solve it . Problem : As showing in the above figure I have couple of buttons . Both needed to place at equidistance width from the centre of the UIView (bold vertical line is centre of the view). Also I have to apply to constraint in such a way that distance between the button will be automatically adjusted. for e.g. the distance should be 25% of the device width. If my device width is 320 the distance between the button is 80 pixels and so on. Solution(I have tried) : For above problem I tried on solution . As shown in the figure I have added on dummy view in the UIView the width of the dummy view is equal to spacing between two buttons. And then I have applied the constraints to the dummy view. such as : `1. Horizontal centre of the UIView 2.Width equals to the UIView width with 0.25 as a multiplier` Question: above solution is working perfectly for me . But if in future if my view will have too many complex elements then adding dummy view might not be the good idea . So, Is there any other clean way to do this ?