up vote 30 down vote favorite
7
share [g+] share [fb]

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?

link|improve this question

67% accept rate
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
feedback

2 Answers

up vote 59 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.

link|improve this answer
That's right. It always seemed strange to me why they didn't add this capability to IB. – Marco Mustapic Jul 16 '09 at 3:06
9  
Wow, kind of makes IB rather, pointless... This did the trick, thanks. – Caffeine Coma Jul 16 '09 at 3:15
8  
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
show 1 more comment
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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