0

childbrowserプラグインを備えたphonegap 2.0.7アプリがあります。私の config.xml には、次の設定があります。

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

私のページが childbrowser に読み込まれると、スクロール時に「ラバー バンド」効果が表示されます。

助言がありますか?

4

1 に答える 1

0

解決策を見つけました:

ChildbrowserViewController.m 内

webViewDidFinishLoad 後

for (id subview in webView.subviews)
    if ([[subview class] isSubclassOfClass: [UIScrollView class]])
        ((UIScrollView *)subview).bounces = NO;
于 2013-05-29T14:11:59.217 に答える