Phonegap 2.0.7> childbrowser DisallowOverscroll

时间:2013-05-29 13:53:57

标签: cordova phonegap-plugins

我有一个带有childbrowser插件的phonegap 2.0.7应用程序。 在我的config.xml中,我有以下偏好:

<preference name="DisallowOverscroll" value="true" />

当我的页面加载到儿童浏览器中时,滚动时仍然会注意到“橡皮筋”效果。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

找到解决方案:

在ChildbrowserViewController.m

中 在webViewDidFinishLoad

之后

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