我已经构建了phonegap应用程序,它在android和windows上运行良好.但对于iOS我面临的问题是,状态栏内容和页面内容混淆,因此我无法点击标题中提供的后退按钮.任何人都可以帮我解决这个问题吗?
这是我的config.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "io.example.com"
version = "1.0.2">
<name>MyAPP</name>
<description>
</description>
<author email="rakesh@gmail.com">
Rakesh
</author>
<access origin="*"/>
<content src="index.html" />
<preference name="target-device" value="universal" /> <!-- all: possible values handset, tablet, or universal -->
<!-- <preference name="fullscreen" value="true" /> --> <!-- all: hides the status bar at the top of the screen -->
<preference name="webviewbounce" value="false" /> <!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
<preference …Run Code Online (Sandbox Code Playgroud)