代码之家  ›  专栏  ›  技术社区  ›  Naveen Kumar V

ionic-下拉列表在iPAD中闪烁

  •  2
  • Naveen Kumar V  · 技术社区  · 7 年前

    enter image description here

    [2.如果点击外部下拉列表]

    enter image description here

    [3.如果点击内部下拉列表] 再次显示图像1。

    有什么解决方案或变通方法吗?

    编辑:

    即使我改变iPAD的方向,它也会显示之前列出的下拉内容。

    1 回复  |  直到 7 年前
        1
  •  1
  •   Naveen Kumar V    7 年前

    这似乎是iOS 11和苹果UIWebView最新更新的一个问题。它与苹果的WKWebView配合得很好。

    通过安装cordova的WKWebView解决了该问题。

    >> cordova plugin add cordova-plugin-wkwebview-engine --save
    

    然后在配置中添加以下内容。xml:

    <feature name="CDVWKWebViewEngine">
      <param name="ios-package" value="CDVWKWebViewEngine" />
    </feature>
    
    <preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
    

    参考链接:

    1. WKWebView Engine plugin
    2. Apple's Documentation
    3. Cordova forum
    4. Other SO question