Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

problem when scrolling a page in uiwebviews

I'm looking for a way to block the page from scrolling too far, leaving an empty grey when going too far from where it should stop

share|improve this question

2 Answers

up vote 1 down vote accepted
webView.scrollView.bounces = NO;
share|improve this answer

You can set like this

webView.scrollView.bounces = NO;
share|improve this answer
webView.scrollView.scrollEnabled might not let me scroll the page, right ? – Ben Feb 5 at 10:04
@Ben Then you can set bounces = NO; – laxonline Feb 5 at 10:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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