-4

How to implement Push notification in iPhone?

Cœur
  • 37,241
  • 25
  • 195
  • 267
jeevanantham
  • 257
  • 1
  • 3
  • 11

3 Answers3

5

The Apple documentation on Push Notifications is very clear, with sample code:

http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction/Introduction.html

Philippe Leybaert
  • 168,566
  • 31
  • 210
  • 223
4

If you aren't interested in implementing your own server solution for providing push notifications to your client, you might be interested in these solutions:

http://appnotify.com/

http://urbanairship.com/push/

Each charge a fee for push notifications sent, but they also abstract away most of the initial setup complexity and, obviously, the costs associated with maintaining one's own server/bandwidth.

If you're interested in hosting your own solution, I've had success with Apns4r, a Rails plugin: http://github.com/searls/Apns4r

Justin Searls
  • 4,789
  • 4
  • 45
  • 56
1

There is also an open source python Apple Push Notification server, in case you want to roll your own and don't fancy any of the options that Justin mentioned.

http://leepa.github.com/django-iphone-push/

prairiedogg
  • 6,323
  • 8
  • 44
  • 52