本文介绍了PhoneGap iOS防止overscroll的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

测试设备:iOS 6.1.3版本:3gs

Test device: 3gs with iOS 6.1.3

我使用Adobe提供的PhoneGap构建服务

I'm using the PhoneGap build service provided by Adobe

我想防止整个应用程序过度滚动。我已阅读相关问题,并将以下内容添加到我的 config.xml

I want to prevent the whole app from overscrolling. I've read the related questions and added the following to my config.xml

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

这没有效果。

我做错了?

推荐答案

最后找到它: webviewbounce not UIWebViewBounce

Finally found it: it's webviewbounce not UIWebViewBounce

<preference name="webviewbounce" value="false" />

PhoneGap Build会将此翻译成 DisallowOverscroll

PhoneGap Build will translate this to DisallowOverscroll.

请参阅进行讨论。

这篇关于PhoneGap iOS防止overscroll的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 04:37