Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

While I've used UIScrollView successfully in the past by manipulating it programmatically, I'm having trouble getting it to work by setting it up exclusively in Interface Builder.

I have a simple "about" page in my iPhone app. It has a UITextView, some icons, and links to my other apps. I have added all of these views to my UIScrollView, arranging them so that their total size is > 480. When I launch my app, the scrollview displays only the contents that fit on the screen, and nothing scrolls.

Is it possible to do this entirely via IB, or must I manipulate the contentSize via code?

share|improve this question
1  
Your avatar is a blatant ploy for upvotes. +1 – TheTXI Jul 16 '09 at 2:52
I had my real picture in there initially and a co-worker (female) suggested I looked "too happy", and that I should either look "sadder", so I would get more help with my questions, or choose a sexier photo altogether. :-) – Caffeine Coma Jul 16 '09 at 3:24

7 Answers

up vote 92 down vote accepted

You forgot to set the contentSize property of the UIScrollView. Strangely enough you can not do this from Interface Builder. You will have to do it from the view controller managing this scroll view.

share|improve this answer
18  
Wow, kind of makes IB rather, pointless... This did the trick, thanks. – Caffeine Coma Jul 16 '09 at 3:15
14  
You could make a subclass of UIScrollvView that checks if there is just one subview at (0,0) and then automatically sets the contentSize based on that subview. – St3fan Jul 16 '09 at 12:15
2  
+1 to St3fan's suggestion – Mike Akers Nov 25 '09 at 14:54
1  
That's the best piece of advice I've received in a while. I could not figure out why my scroll view didn't work, and didn't find that info about contentSize anywhere else. Thanks. – Drew C Feb 17 '10 at 5:23
12  
I was trying to figure out how to set contentSize in Interface Builder, and found this discussion. At least for me, in Xcode 4.5, I can set it using “User Defined Runtime Attributes”, by adding an entry named contentSize of type Size, and setting the desired value. – nlogax Oct 3 '12 at 18:07
show 3 more comments

Boby_Wan's answer got me thinking, and I found the following solution to configure the UIScrollView's contentSize from Interface Builder:

  1. Select the UIScrollView in the Storyboard scene
  2. Go to the Identity inspector, create a new User Defined Runtime Attribute (click the + button)
  3. Change the attribute Key Path to contentSize
  4. Change the attribute Type to Size
  5. Now set the Value to {desired content width, desired content height}

eg setting the value to {320, 920} will let the user scroll down a whole extra screen on the iPhone.

(I am using xcode 4.3.3, the project's iOS Deployment Target is 5.1)

When I first did this I received the following error:

Illegal Configuration:
     Size type user defined runtime attributes with Xcode versions prior to 4.3
     MainStoryboard.storyboard

If you too get this error it is simple to fix: select the Storyboard in the Project Navigator, and bring up the File inspector. Find/expand the Interface Builder Document section, and there is a drop down for Development. Ensure this is set to Xcode 4.3

share|improve this answer
4  
Awesome find! PS: I'm stunned that this is the best Apple could do. I guess this shows that even Apple staff never use their own tool (interface builder) :). – Adam Jun 28 '12 at 12:54
Brilliant, this has just worked for me in Xcode 4.4. But now how do I put buttons on the part of the scroll view I cannot "see" in IB? – Robert Atkins Oct 8 '12 at 23:14
I just worked it out–you have to release the drag when the pointer is still inside the "screen", otherwise it'll snap back to when you started from. What a pain. – Robert Atkins Oct 8 '12 at 23:43
1  
+1 This should be the new optimal solution – Mihai Damian Jan 21 at 12:05
Awesome man.. loved it!! – Kenpachi Jan 24 at 6:50
show 1 more comment

You can do it using only Interface Builder, go to the Identity Inspector (the third inspector tab) and add a new User Defined Runtime attribute with

  • Key Path: contentSize
  • Type: Size
  • Value: {width, height}
share|improve this answer
Great, it worked! – AVEbrahimi Mar 2 at 13:15

Now there is a way to make a UIScrollView scroll without leaving Storyboard:

  1. Select the UIScrollView in the Storyboard, go to the Size inspector and change the Bottom value (or whatever other value you need to change) in the Content Insets section.
  2. Now go to the Identity inspector and create a new User Defined Runtime Attribute (by clicking the + button) and name it contentSize. It doesn't matter what Type or Value you fill in (you can even leave their default value).

This will make the UIScrollView work properly, although I don't know why the second step is necessary (I found out by chance). :(

share|improve this answer
Change the Bottom value to what? – yourfriendzak May 17 '12 at 21:08
Change it to the height of the content area. It seems to work, and overrides the value you supply for the user-defined "contentSize" attribute. – Reid Oct 2 '12 at 18:53

one approach i have used in the past is to drag the scrollview out of it's containing view in interface builder, and set it's actual size to what want the contentSize to be.

what is not inherently obvious about interface builder is you can have unassociated views that are stored in the nib, but aren't a part of the main view the nib is primarily for.

in the view where you want it the scrollview to live, place a simple UIView, which you use as a place holder. (this is simply so you can visually design it's location. if you are just using the entire view, you can skip this step and use the second code snippet i supply at the end of this answer).

you can then populate the scrollview with controls, visually laying it out how you want it to be. give both the placeholder and the scrollview properties inside your view controller so you an access them at runtime.

at runtime, in - (void)viewDidLoad

scrollView.contentSize = scrollView.frame.size;
scrollView.frame = placeholder.frame;
[placeholder.superview addSubView:scrollView];
[placeholder removeFromSuperview];

alternatively (if you didn't use a placeholder):

CGRect f = self.view.frame;
scrollView.contentSize = f.size;
f.origin.x = 0;
f.origin.y = 0;
scrollView.frame = f;
[self.view addSubView:scrollView];

finally, if you "lose" your scroll view in interface builder (it's possible to close it so it disappears from the design grid), don't panic. just click on it in the object list to the left of the design grid.

share|improve this answer
1  
Thanks - this worked well. Also need to declare IBOutlets in YourViewController.h for the placeholder and scroll views, and connect them in Interface Builder. And lastly, dot.notation wasn't appreciated by xCode for the 3rd line, so used normal message send syntax - then everything worked great! – jiy Sep 13 '12 at 15:25
no worries. there is always a danger when posting code snippets that some people can't use them to get the concept, rather than expecting the "exact" code to work in every situation. – unsynchronized Sep 13 '12 at 23:49
This is the method I actually use. I don't even need to resize this program at all. I think it's the way it's intended to be done. It's the one true answer. – Jim Thio Nov 6 '12 at 12:57
After drawing it outside, I'll just move it to super view. Tada. – Jim Thio Nov 6 '12 at 12:57

In Xcode 4.5 using Autolayout I have no Content Insets section in my size inspector. So I had to add it under User Defined Runtime Attributes and then it worked fine.

What you add in "User Defined Runtime Attributes" is keyPath == contentInset which is of type "Rect" (UIEdgeInsets, which has the same input as a Rect) and is defined as {top, left},{bottom, right}. The contentSize only defines the region of the scrollview window. contentInset defines the scrollable area.

I hope this helps somebody in the same situation.

share|improve this answer

With Autolayout (iOS6+), you can avoid setting contentSize. Set the following constraints instead:

  1. Pin the top of the scrollview to the top of its top-most child.
  2. And pin the bottom to the bottom of its bottom-most child.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.