iOS应用全屏问题

时间:2018-06-12 10:53:09

标签: ios cordova wkwebview

我的iOS应用程序有问题(Android版本看起来很好) 我用Cocoon webview构建它

继承我的问题: 应用程序启动好,但有时(让我们说十分之一发布)它只是不填满整个屏幕所以在底部我有黑色条。 整个应用程序有点缩小,但因为我使用扩展侧面保持覆盖。 观察图像:

enter image description here

enter image description here

首先看起来很好,而且secong有点小。

有谁知道如何解决这个问题?

继承我的配置:

<?xml version="1.0" encoding="UTF-8"?>
    <widget xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" id="xxxxxxxxxxxxxx" version="1.0" ios-CFBundleIdentifier="xxxxxxxxxxxxxx">
        <name>xxxxxxxxxxxxxx</name>
        <description>xxxxxxxxxxxxxxxxxx</description>
        <author href="xxxxxxxxx" email="xxxxxxxx">xxxxxxx</author>
        <preference name="orientation" value="portrait"/>
        <preference name="fullscreen" value="false"/>
        <preference name="DisallowOverscroll" value="true"/>
        <preference name="deployment-target" value="8.0"/>
        <access origin="*"/>
        <plugin name="cordova-plugin-file"/>
        <access origin="*"/>
        <preference name="iosPersistentFileLocation" value="Library"/>
        <preference name="iosExtraFilesystems" value="library,library-nosync,documents,documents-nosync,cache,bundle,root"/>
        <allow-intent href="file://*/*"/>
        <plugin name="cordova-plugin-inappbrowser"/>
        <plugin name="cordova-plugin-whitelist"/>
        <access origin="*"/>
        <allow-intent href="http://*/*"/>
        <allow-intent href="https://*/*"/>
        <allow-intent href="tel:*"/>
        <allow-intent href="sms:*"/>
        <allow-intent href="mailto:*"/>
        <allow-intent href="geo:*"/>
        <allow-intent href="file://*/*"/>
        <plugin name="cordova-plugin-wkwebview-engine"/>
        <feature name="CDVWKWebViewEngine">
            <param name="ios-package" value="CDVWKWebViewEngine"/>
        </feature>
        <preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine"/>
        <preference name="webView.scrollView.contentInsetAdjustmentBehavior" value="never"/>
        <engine name="ios"/>
        <preference name="Orientation" value="portrait"/>
        <plugin name="cordova-plugin-indexeddb" spec="*"/>
        <platform name="ios">
            <preference name="enabled" value="true"/>
            <name>xxxxxxxx</name>
            <splash src="www/splash/ios/Default@2x~universal~anyany.png"/>
            <splash src="www/splash/ios/Defaulf-Portrait-2436h.png"/>
        </platform>
        <plugin name="cordova-plugin-geolocation" spec="*"/>
        <plugin name="cordova-plugin-splashscreen" spec="*"/>
        <preference name="SplashScreen" value="screen"/>
        <preference name="SplashScreenDelay" value="5000"/>
        <plugin name="cordova-plugin-ios-non-exempt-encryption" spec="*"/>
    </widget>
请帮助.... :(

0 个答案:

没有答案