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 .
I faced the same problem. I resolved using the idea i got from rdelmar's answer.
This is what I did.
For left button:
For right button:
Let me know if it worked for you.
try Aligning leading edge of your btn2 and trailing edge of your btn1 with center y of your view set constant to 0 and multiplier 200:160 and 120:160 respectively where your center y is second item
You can do this in the storyboard (or xib) by using constraints to the right edge of the screen -- the value of the right edge is the same as the width of the screen, so you can use that for calculations. For the left button you want its trailing edge to equal the superview's right edge times 0.375 (0.5 minus .125 which is half of your 25% requirement). the right button would have its leading edge equal to right edge of superview times 0.625 (.5 + .125).
The constraints look like this,