Reputation: 2269
I'm new to Xcode and I'm using constraints. Why does the bottom button have so much space in between the 2nd bottom button? How can I fix this so the bottom button is moved up to be right under the 2nd most bottom button?
What should I do here?
Upvotes: 0
Views: 71
Reputation: 223
To move up the bottom button you could remove the bottom constraint to the superview.
You will also have to add a top constraint on this button, linking it to the one above.
Upvotes: 3