views:

443

answers:

1

Hi all,

can you just help me turning off the bounce in the UIWebView. Because when we over scroll it it displays the unnecessary space with the grayish back ground. Thanks in advance.

A: 

You can try this:

for (id subview in YourWebView.subviews){
    if ([[subview class] isSubclassOfClass: [UIScrollView class]])
        ((UIScrollView *)subview).bounces = NO;
}
nico