I've been cracking my head on this one for weeks now.
What happens if I set the repeatInterval
property of a UILocalNotification
to be a non-fixed interval? (by non-fixed I mean units such as NSWeekdayCalendarUnit
and NSWeekdayOrdinalCalendarUnit
).
So say I have UILocalNotification
with its fireDate
set to the Wednesday in the current week, and I set the repeatInterval
to be NSWeekdayCalendarUnit
. Will it repeat every Wednesday?
Is the same true for NSWeekdayOrdinalCalendarUnit
? So if I have a notification with the fireDate
set to be the 4th Wednesday of the month, and I set the repeatInterval
to be NSWeekdayOrdinalCalendarUnit
, will it repeat every 4th Wednesday of every month?
Thank you in advance.