Reputation: 20171
I've seen some apps that have a small content area but give you that nice "iOS" effect of allowing you to bounce/pull down/scroll the view. Basically the exact effect as if using a UITableView.
I'm able to get that effect with a UIView/ScrollView when the content in the view exceeds the size of the phone, however how can I "enabled" it all the time?
Upvotes: 3
Views: 1353
Reputation: 491
Try setting scrollView.bounces to YES
and scrollView.alwaysBounceVertical to YES/NO.
Upvotes: 1
Reputation: 20171
I believe this is what I'm looking for!
scrollView.alwaysBounceVertical = YES;
Upvotes: 7