遇到PhoneGap iOS应用程序的问题

时间:2013-08-25 00:43:32

标签: ios build cordova pg

我是PhoneGap Build的新手,我正在尝试开始在PG Build中创建一个应用程序。我试过把所有东西都搬过来,但是我遇到了麻烦,所以我开始尝试制作一个只显示警告框的简单应用程序。这仍然无效,所以我想我会发布我的代码,看看能不能得到一些帮助。我尝试过多个不同的代码,但它们似乎没有用。

我在iPad mini上测试,我有Apple开发者帐户。该应用程序加载正常 - 唯一的问题是警报框没有显示...这是代码:

index.html

<!DOCTYPE html>
<html>
<head>
    <title>Notification Example</title>
    <script src="phonegap.js"></script>
    <script type="text/javascript" charset="utf-8">
        document.addEventListener("deviceready", onDeviceReady, false);
        function onDeviceReady() {
            //Empty
        }
        function alertDismissed() {
            //Do something
        }
        function showAlert() {
            navigator.notification.alert(
                'You are the winner!',
                alertDismissed,
                'Game Over',
                'Done'
            );
        }
    </script>
</head>
<body>
    <p><a href="#" onclick="showAlert(); return false;">Show Alert</a></p>
</body>
</html>

config.xml

(为了便于阅读而删除不相关的代码)

....

<feature name="http://api.phonegap.com/1.0/battery"/>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/contacts"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/media"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/notification"/>

....

有人可以帮忙吗?就像我说的,我是PG的新手,所以我真的很感激并帮助我获得!谢谢!

0 个答案:

没有答案