When we are developing phonegap application page moves up and down when we scroll in the webview eventhough page has little data.
- (void)webViewDidFinishLoad:(UIWebView *)theWebView
{
for(id subview in theWebView.subviews) {
if([[subview class]isSubclassOfClass:[UIScrollView class]])
((UIScrollView *)subview).bounces = NO;
}
Just add above extra code in appdelegates.m file webviewdidfinish load function.
This will fix the issue.
1 comment:
[[subview class]isSubclassOfClass:[UIScrollView class]]
should be written as
[subview isKindOfClass:[UIScrollView class]]
Post a Comment