iphone phonegap应用程序

时间:2011-11-07 15:19:25

标签: iphone xcode cordova phonegap-plugins

在手机间隙iphone应用程序中,我想定期显示本地通知。那我怎么能这样做呢?我找到了一个本地通知的示例插件但它不起作用,所以它们在属性列表文件中的任何设置都可以显示通知?

3 个答案:

答案 0 :(得分:4)

我制作了本教程/示例,介绍如何使用localNotification以及回调您的应用...

http://www.drewdahlman.com/meusLabs/?p=84

希望有所帮助!

答案 1 :(得分:2)

对于iPhone中的本地通知,GitHub上的PhoneGap插件回购中有一个PhoneGap插件:https://github.com/phonegap/phonegap-plugins

本地通知插件位于:

https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/LocalNotification

它没有README,但确实有一个例子。

答案 2 :(得分:0)

感谢您澄清您希望做的事情。我不认为它们是PhoneGap中的内置本地/推送通知,但您可以使用http://urbanairship.com处的工具来完成此操作。


我不确定你究竟在问什么,但听起来你想要显示通知。

如果那是你想要做的,请把它贴在你的JS中:

function alertDismissed(button) {
    if (button == 1) {
        alert('they hit yes');
    }
}

navigator.notification.alert(
    'Look at this message now!',  // message
    alertDismissed,         // callback
    'Look at me!',            // title
    'Yes,No'               // buttonName
);

您还需要确保在文档头中调用phonegap.js文件。