1

Possible Duplicate:
UILocalNotification Repeat Interval for Custom Alarm (sun, mon, tue, wed, thu, fri, sat)

i am new in Xcode. I need to use local notifications in my app. Local notification has property repeatinterval which can have only limited values (repeat every minute, hour, day, etc). But i need to have notifications to repeat in more flexible way (for example: 3 times a day). Is there a way to do this??

Community
  • 1
  • 1

1 Answers1

0

I looked into this quite thoroughly myself about a month ago. You can only get automatic repeats at single repeatInterval intervals - every one minute, or hour, or day, etc. If you want any finer control you have to do it yourself. Since you want notifications thrice a day, schedule three notifications, eight, 16, and 24 hours hence, each on a one-day repeat.

Kevin
  • 53,822
  • 15
  • 101
  • 132