PhoneGap无法在iOS 5设备上运行

时间:2013-09-10 08:26:35

标签: ios5 cordova sencha-touch-2 phonegap-build

您好我尝试使用Docs Phonegap Notification中的简单通知代码创建示例index.html。

我压缩了索引文件并将其上传到带有2.9版本的build.phonegap.com。该应用程序已成功安装在我的iPad(iOS 5)上,但当我点击Show Alert时没有任何反应。我也尝试在我的Sencha Touch 2应用程序上添加phonegap 2.9.0,我将其构建为本机并将其安装在我的设备上,但应用程序挂在app Loading Indicator上。

Index.html 代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Notification Example</title>

    <script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
    <script type="text/javascript" charset="utf-8">

    // Wait for device API libraries to load
    //
    document.addEventListener("deviceready", onDeviceReady, false);

    // device APIs are available
    //
    function onDeviceReady() {
        // Empty
    }

    // alert dialog dismissed
        function alertDismissed() {
            // do something
        }

    // Show a custom alertDismissed
    //
    function showAlert() {
        navigator.notification.alert(
            'You are the winner!',  // message
            alertDismissed,         // callback
            'Game Over',            // title
            'Done'                  // buttonName
        );
    }

    </script>
  </head>
  <body>
    <p><a href="#" onclick="showAlert(); return false;">Show Alert</a></p>
  </body>
</html>

非常感谢任何帮助。

更新

当我在zip文件上添加config.xml时,工作正常。并在body标签中添加了phonegap.js脚本,然后将其上传到build.phonegap。

谢谢

1 个答案:

答案 0 :(得分:0)

当我在zip文件上添加config.xml时,工作正常。并在body标签内添加了phonegap.js脚本。

谢谢