114

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.

Arbitur
  • 38,684
  • 22
  • 91
  • 128
  • Can you drag and drop to the correct entity in the document outline to the left? - Scene objects in this screenshot: http://ptgmedia.pearsoncmg.com/images/chap5_9780672335761/elementLinks/05fig01_alt.jpg – Woodstock Feb 27 '15 at 13:28
  • Ive tried that aswell, same result – Arbitur Feb 27 '15 at 13:52

7 Answers7

312

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.

enter image description here

Pavel Gurov
  • 5,587
  • 3
  • 26
  • 23
  • 6
    Hallelujah! I didn't know what I was going to do when they removed the Editor-->Pin menu. – Jeremy Hicks Sep 25 '15 at 19:39
  • 9
    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 :) – Ryan Pfister Oct 21 '15 at 18:20
  • 2
    It's about those small Xcode subtleties. That do SO much. :) – Marchy Dec 04 '15 at 17:33
  • 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". – micnguyen Feb 03 '16 at 10:08
  • Is this only available in storyboards and not plain nibs? I cannot get this option to appear for love nor money. – Daniel Wood Apr 08 '16 at 16:14
  • @DanielWood Well, the 'topLayoutGuide' and 'bottomLayoutGuide' are available anywhere in the IB (storyboard or a xib) as long as what you are editing is a viewController's view, not a regular UIView. If it is a regular UIView you still get the arrow, only the options will be limited to superview and neighbouring views, because plain UIViews don't have layout guides. btw, thanks a lot for Seconds app, its simply the best, I use it almost every day for my boxing workouts! – Pavel Gurov Apr 09 '16 at 11:26
  • @PaulGurov Ha, thanks. I'm glad you like it. Regarding the nibs. I realised I needed to add a view controller in the end. But I couldn't get it to work with UIViewController initWithNib... Are the two not compatible? Look at me, has successful app, still can't code ;-) – Daniel Wood Apr 09 '16 at 18:58
  • @PaulGurov Thanks for the offer. I'm just prototyping right now so I'll just use Storyboards instead. Or just do it in code like I always have. – Daniel Wood Apr 11 '16 at 10:03
  • can we see it default to the superview? – Ryan Chou Jul 23 '16 at 13:30
  • Even if there is a way to do that, I am not aware of it ( – Pavel Gurov Jul 23 '16 at 14:10
  • Awesome, but I wonder why it sometimes aligns top (and bottom) automatically to Superview and some time it does it to the Top Layout guide. – Anjan Biswas Aug 02 '17 at 22:16
58

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.

Arbitur
  • 38,684
  • 22
  • 91
  • 128
dan
  • 589
  • 5
  • 2
15

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).

enter image description here

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.

enter image description here

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

enter image description here

Zhivko Bogdanov
  • 241
  • 4
  • 10
3

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.

Select the relative to margin

christophercotton
  • 5,829
  • 2
  • 34
  • 49
1

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:

enter image description here

enter image description here

oren
  • 3,159
  • 18
  • 33
0

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.

Gabriel Jensen
  • 4,082
  • 1
  • 17
  • 14
0

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.

Jas_meet
  • 366
  • 1
  • 20