Access iOS Notification Center from Phonegap

I need to access the nofification center using phonegap. I am developing an iPad application using a handset (Cordova - 1.9.0) and JQM 1.0.1.

Is there a way to access the notification center using a phone saver?

+4
source share
1 answer

Your application will need to send a push notification. What the user will have to agree to receive.

Any location notification using the following plugin: https://github.com/phonegap/phonegap-plugins/tree/master/iOS/LocalNotifications

Or Push Notification via the Apples server or Urban Airship Push http://urbanairship.com/blog/2010/06/09/phonegap-push/

After you configure push, the user can select your application from the notification center in the settings.

+3
source

All Articles