I'm trying to use an uiwebView, with content I think is inside its scrollView. I want to be able to scroll, but not to show blank parts.
I mean, for example, you have a tall page, so you can scroll down, but when you are at the bottom, you shouldn't be able to continue scrolling. Also when you are at the top you shouldn't be able to scroll down, but it happens by default, and it makes a nasty blank space, does anyone know which properties could I use?
You want to set the bounces
property of your UIScrollView
to NO
.
Please read the documentations before asking such trivial questions...