How to implement Push notification in iPhone?
Asked
Active
Viewed 1,621 times
-4
-
2It wouldn't hurt to accept some answers to your (other) questions. It will help you get answers in the future. – Philippe Leybaert Jan 18 '10 at 11:38
-
1Have you tried searching Google? There are at least three keywords in your pseudo-question. – Alex Reynolds Jan 18 '10 at 13:55
-
This appears to be a duplicate of the following: http://stackoverflow.com/questions/1052645/apple-pns-push-notification-services-sample-code – Brad Larson Jan 18 '10 at 13:57
3 Answers
5
The Apple documentation on Push Notifications is very clear, with sample code:

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:
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.

prairiedogg
- 6,323
- 8
- 44
- 52