vote up 0 vote down star
1

I have all my controls laid out in interface builder (many labels, buttons etc). How do I put them all in a scroll view in interface builder so that I can have more space and be able to scroll up and down to reveal more controls? Do I have to do this programatically?

flag

34% accept rate

2 Answers

vote up 1 vote down check

Open the view that has all the controls and labels, etc. (in Interface Builder). Select All. Then under the Layout menu, select Embed Objects In... (scroll view).

link|flag
Marc W beat me to it. – mahboudz Oct 5 at 17:32
this doesn't work as expected. Everything is under a UIScrollView now, but when I load the app, nothing is scrollable. Why? – erotsppa Oct 6 at 2:33
In IB, make sure that the scrollview is small enough so the whole thing is visible in the view when your app runs. In other words its bounds/frame needs to be smaller or equal to the view it resides in. Then, in your app, you need to set the scrollview.contentSize = size of the view with all the buttons, labels, etc. This will be larger than the frame/bounds you set for the scrollview. If everything is done right, then you should be able to scroll with no other work on your part. – mahboudz Oct 6 at 3:20
I couldn't get it to work, but how would you layout things below the 480 height in interface builder anyway? It doesn't seem to let you stretch the window – erotsppa Oct 6 at 4:19
I had to make my view as a top level view, where I could have it be as large as I wanted. Then I had to embed them in a scroll view and then move that into my main view. Changing things is a pain. I wish Interface Builder let us open views in their own window instead of the parent view's window. – mahboudz Oct 6 at 6:33
show 1 more comment
vote up 1 vote down

Select all the objects you want to put into a scroll view and go to the Layout menu, choose "Embed Objects In" and choose "Scroll View".

link|flag

Your Answer

Get an OpenID
or

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