PhoneGap iOS prevent overscroll
问题 PhoneGap version: 2.9 Test device: 3gs with iOS 6.1.3 I'm using the PhoneGap build service provided by Adobe 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" /> which has no effect. What am I doing wrong? 回答1: Finally found it: it's webviewbounce not UIWebViewBounce <preference name="webviewbounce" value="false" />