From the [documentation][1]:
> 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][2].
Following that advice:
NSDate *today = [NSDate date];
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
components.day = 1;
NSDate *tomorrow = [gregorian dateByAddingComponents:components toDate:today options:0];
[components release];
NSUInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit;
components = [gregorian components:unitFlags fromDate:tomorrow];
components.hour = 0;
components.minute = 0;
NSDate *tomorrowMidnight = [gregorian dateFromComponents:components];
[gregorian release];
(I'm not sure offhand if this is the most efficient implementation, but it should serve as a pointer in the right direction.)
[1]: http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSCalendarDate_Class/Reference/Reference.html
[2]: http://developer.apple.com/documentation/Cocoa/Conceptual/DatesAndTimes/DatesAndTimes.html