Is there a better way to find midnight tomorrow? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T22:00:05Z http://stackoverflow.com/feeds/question/181459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow 2 Is there a better way to find midnight tomorrow? Dre 2008-10-08T05:26:10Z 2009-08-06T07:25:55Z <p>Is there a better way to do this?</p> <pre><code>-(NSDate *)getMidnightTommorow { NSCalendarDate *now = [NSCalendarDate date]; NSCalendarDate *tomorrow = [now dateByAddingYears:0 months:0 days:1 hours:0 minutes:0 seconds:0]; return [NSCalendarDate dateWithYear:[tomorrow yearOfCommonEra] month:[tomorrow monthOfYear] day:[tomorrow dayOfMonth] hour:0 minute:0 second:0 timeZone:[tomorrow timeZone]]; } </code></pre> <p>Note that I always want the next midnight, even if it happens to be midnight when I make that call, however if it happens to be 23:59:59, I of course want the midnight that is coming in one second.</p> <p>The natural language functions seem flaky, and I'm not sure what Cocoa would do if I pass 32 in the "day" field. (If that'd work I could drop the [now dateByAddingYears:...] call)</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181495#181495 8 Answer by mmalc for Is there a better way to find midnight tomorrow? mmalc 2008-10-08T05:56:35Z 2008-10-08T20:29:35Z <p>From the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSCalendarDate_Class/Reference/Reference.html" rel="nofollow">documentation</a>:</p> <blockquote> <p>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 <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/DatesAndTimes/DatesAndTimes.html" rel="nofollow">Dates and Times Programming Topics for Cocoa</a>.</p> </blockquote> <p>Following that advice:</p> <pre><code>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]; </code></pre> <p>(I'm not sure offhand if this is the most efficient implementation, but it should serve as a pointer in the right direction.)</p> <p>Note: In theory you can reduce the amount of code here by allowing a date components object with values greater than the range of normal values for the component (e.g. simply adding 1 to the day component, which might result in its having a value of 32). However, although <code>dateFromComponents:</code> <em>may</em> tolerate out-of-bounds values, it's not guaranteed to. You're strongly encouraged not to rely on it.</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181500#181500 0 Answer by selwyn for Is there a better way to find midnight tomorrow? selwyn 2008-10-08T06:01:24Z 2008-10-08T06:01:24Z <p>Convert your current date and time to a Unix date (seconds since 1970) or DOS style (since 1980), then add 24 hours and convert it back. Then reset the hours, minutes and seconds to zero to get to midnight.</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181508#181508 4 Answer by loudej for Is there a better way to find midnight tomorrow? loudej 2008-10-08T06:06:31Z 2008-10-08T06:06:31Z <p>Nope - it'll be the same way you use to find midnight today.</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181602#181602 1 Answer by louism for Is there a better way to find midnight tomorrow? louism 2008-10-08T07:00:22Z 2008-10-08T07:00:22Z <p>sounds like a good title for a pop song:</p> <p>"Is there a better way to find midnight tomorrow?"</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/860379#860379 1 Answer by geekydevjoe for Is there a better way to find midnight tomorrow? geekydevjoe 2009-05-13T20:55:38Z 2009-05-13T20:55:38Z <p>[NSDate dateWithNaturalLanguageString:@"midnight tomorrow"];</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/1237402#1237402 0 Answer by James for Is there a better way to find midnight tomorrow? James 2009-08-06T07:25:55Z 2009-08-06T07:25:55Z <p>NSCalendar *gregorian = [[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar] autorelease];</p> <p>NSDate *tomorrow = [NSDate dateWithTimeIntervalSinceNow:(24 * 60 * 60)];</p> <p>NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate:tomorrow];</p> <p>NSDate *midnight = [gregorian dateFromComponents:components];</p>