0

In my native iPhone Application, I have a requirement to add a reminder to the user's iPhone Device.

Is it possible to implement this feature using current iPhone SDK ?

Or else is there any other way to implement this feature ?

Thanks in advance...

Nirmal
  • 4,789
  • 13
  • 72
  • 114
  • What do you mean by a reminder feature? Do you mean a reminder that works only when the application is open, or a reminder that works even if the application has been closed? In order to do the latter you need to use Push notifications. – Ron Gejman Dec 16 '09 at 07:01
  • Reminder feature means it works even in the "application closed" status. – Nirmal Dec 16 '09 at 07:02

1 Answers1

2

You need to use Push notifications. The steps involved in doing this are too lengthy and involved to list in this answer. Familiarize yourself with Apple's documentation. You will need a Push notification server or pay a service to handle the Push Notification server for you (such as iLime)

Ron Gejman
  • 6,135
  • 3
  • 25
  • 34
  • @Ron Gejman : Thanks for your feedback.. Actually my requirement is like that, I want to add alert to the existing iPhone User's Calender on particular date and time. Is it possible to do so ? – Nirmal Dec 16 '09 at 08:57
  • See this question, in that case: http://stackoverflow.com/questions/246249/programmatically-add-custom-event-in-the-iphone-calendar – Brad Larson Dec 16 '09 at 13:24