ChatGPT解决这个技术问题 Extra ChatGPT

Autolayout: Add constraint to superview and not Top Layout Guide?

I have a UIView in my UIViewController in storyboard which I want to add a constraint on to space that view a distance from the top edge.

Now, when I do the usual by ctrl + drag to the ViewController's main view I only get option to set it to top layout guide.

This is a problem for me because at one point in the app Im going to move the main view up around 20-50px and what happens then is that view I have will not move... because its not aligned to superview.

How can I manually do this in storyboard or do I have to add it programatically?

Im using xcode 6.

Can you drag and drop to the correct entity in the document outline to the left? - Scene objects in this screenshot: ptgmedia.pearsoncmg.com/images/chap5_9780672335761/elementLinks/…
Ive tried that aswell, same result

P
Pavel Gurov

There is an arrow to the right of the constraint constant value. If you click on it, a menu pops out where you can choose what is it that you want to make your constraint relative to. If you choose 'View', than it will pin it to the top of the view.

https://i.stack.imgur.com/N627y.png


Hallelujah! I didn't know what I was going to do when they removed the Editor-->Pin menu.
can't believe I didn't see that before. Awesome.
Just a note for people who are as clueless as me --> you may not be able to make this change unless the view you are adding the constraint to is below the top layout guide. I had a view above the top layout guide and "Top Layout Guide" wasn't an option in the drop down menu. Which is probably a "duh" statement for non-newbs like me :)
It's about those small Xcode subtleties. That do SO much. :)
Just a quick clarification that confused me: despite the image having Top Layout Guide ticked, if you want to pin the view to the TOP of the view like the very top of the device, then select "View".
A
Arbitur

You should be able to do it by highlighting the view you want in the storyboard and then selecting Editor > Pin > Top Space to Superview in the top menu.

This is outdated in XCode 7, see @PaulGurov's answer instead.


Works like a charm - XCode 6.3
They've removed 'pin' from the editor menu in Xcode 7. Any new solutions?
Z
Zhivko Bogdanov

TL;DR: You can constrain to the margin by pressing the Alt key on the keyboard.

One can also add that if the view you are trying to pin is not a direct subview of the view that you want to pin it to, the suggested approach is not really valid. Let's say the view hierarchy looks like that and you want to pin the image view (Parallax Image View in this case) to the view controller's view (View in this case).

https://i.stack.imgur.com/Er0lO.png

To do that you just Control + Drag from the Parallax Image View to the View. That presents the default choices where you can see Vertical Spacing to Top Layout Guide to pin the Parallax Image View to the top layout guide.

https://i.stack.imgur.com/PABJe.png

What you want is to pin it to the top (margin) of the view. To do that you have to switch to the other set of constraints by pressing Alt

https://i.stack.imgur.com/rJ3Ub.png


Very useful tip. This has actually solved my problem.
It works for me, but I don't know how to add multiple constraints at the same time. Now, I have to add one by one, to take time.
c
christophercotton

I had a whole bunch of constraints already there and I just wanted to change them rather than break them. Turns out if you double click on the constraint to edit, then click on the item that has the ".Margin", you can just turn off the "Relative to Margin" by selecting that item.

https://i.stack.imgur.com/VHqNW.png


This was what I was looking for when I came here! Thanks
o
oren

Dan's answer works. I just wanted to state that if you set your view in storyBoard at y < 20, and configure constraints through the pin panel, it will set top to superview:

https://i.stack.imgur.com/LgIlM.png

https://i.stack.imgur.com/3khYr.png


G
Gabriel Jensen

If the height of the view is set to 0 by accident, Vertical Space to Top Layout Guide will NOT appear. Vertical Space to Bottom Layout Guide will appear, however, which must have made sense to someone inside Apple circa 2004.


J
Jas_meet

None of the above answers worked for me, instead I have to do a hack to set my subview's top with superview's top instead with Top layout guide.

First, set the subview center vertically with superview.

Then, change the Center Y constraints for subview as well as superview to Top constraint.

You are good to go now.