I want to make a UILocalNotification
repeat every week, before iOS7 I would use localNotification.repeatInterval = NSWeekCalendarUnit
- except NSWeekCalendarUnit
has been deprecated.
The docs say:
"Use NSCalendarUnitWeekOfMonth or NSCalendarUnitWeekOfYear, depending on which you mean"
But I don't know what the difference is, so I don't know which one I mean.