vote up 2 vote down star
2

I'm adding repeating events to a Cocoa app I'm working on. I have repeat every day and week fine because I can define these mathematically (3600*24*7 = 1 week). I use the following code to modify the date:

[NSDate dateWithTimeIntervalSinceNow:(3600*24*7*(weeks))]

I know how many months have passed since the event was repeated but I can't figure out how to make an NSDate object that represents 1 month/3 months/6 months/9 months into the future. Ideally I want the user to say repeat monthly starting Oct. 14 and it will repeat the 14th of every month.

flag

Thanks. I had the same question. :-) – Frank Jun 15 at 2:31

3 Answers

vote up 5 vote down check

(Almost the same as this question.)

From the documentation:

Use of NSCalendarDate strongly discouraged. It is not deprecated yet, however it may be in the next major OS release after Mac OS X v10.5. For calendrical calculations, you should use suitable combinations of NSCalendar, NSDate, and NSDateComponents, as described in Calendars in Dates and Times Programming Topics for Cocoa.

Following that advice:

NSDate *today = [NSDate date];

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];

NSDateComponents *components = [[NSDateComponents alloc] init];
components.month = 1;
NSDate *nextMonth = [gregorian dateByAddingComponents:components toDate:today options:0];
[components release];

NSDateComponents *nextMonthComponents = [gregorian components:NSYearCalendarUnit | NSMonthCalendarUnit fromDate:nextMonth];

NSDateComponents *todayDayComponents = [gregorian components:NSDayCalendarUnit fromDate:today];

nextMonthComponents.day = todayDayComponents.day;
NSDate *nextMonthDay = [gregorian dateFromComponents:nextMonthComponents];

[gregorian release];

There may be a more direct or efficient implementation, but this should be accurate and should point in the right direction.

link|flag
Your link to the similar question didn't work for me :( – bmalicoat Oct 10 '08 at 1:29
vote up 0 vote down

NSCalendarDate is no longer supported by new SDK , will have problem while building for distribution.

link|flag
vote up 0 vote down

I'll probably use NSCalendarDate.

Get current date's dayOfMonth, monthOfYear and yearOfCommonEra, as three numbers.

Add the required number of months (1/3/6/9), taking care of 1) whether that date exist (e.g. 31 April, 29 Feb on a non-leap year), and 2) roll-over of year.

Create that new date with NSCalendarDate's initWithYear:month:day:hour:minute:second:timeZone:

link|flag
The documentation makes clear that NSCalendarDate should not be used. – mmalc Oct 9 '08 at 6:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.