Here is my problem:
I want to create a view whose height exceeds the height of the iPhone-screen. To deal with that, I am using a UIScrollView which works just fine. I created the scroll view in interface builder and set the content size programmatically to twice the height of the screen (that's enough for my purpose). I can run the code and it works just fine. I can scroll up an down without trouble.
The only thing I don't get is how I can add more items (buttons, labels etc.) to the view in interface builder, since it doesn't allow me to change the size of the view. I was thinking to create a scroll view as a top level object and then place a view (the contentview) of a larger height into it. Now the only thing to do is add all the items to the contentview, which is not possible because in interface builder the contentview has only its regular size.
I am thankful for any thoughts on this :-)