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
Now there is a way to make a UIScrollView
scroll without leaving Storyboard:
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 to the height of the content area. 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). :(