Reputation: 2411
I have a pretty simple UIScrollView defined inside Interface Builder. I've pasted in some UILabels and when I run my app, I can drag to see the UILabels at the bottom but as soon as I let go it bounces away from view.
What property controls this sort of setting?
Upvotes: 1
Views: 940
Reputation: 7625
For the bounce effect there is a bounces
property for UIScrollView
which controls this...
And has been mentioned by Ian Henry contentSize
should control the size of your scrollable area.
Upvotes: 1