Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to generate a new NSDate with 0 hours, 0 minutes, and 0 seconds for time. The source date can be any random NSDate.

Is there a way to achieve this? The documentation did not help me with this.


Example

Have: 2010-10-30 10:14:13 GMT

Want: 2010-10-30 00:00:00 GMT

share|improve this question

3 Answers

up vote 20 down vote accepted
unsigned int flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit;
NSCalendar* calendar = [NSCalendar currentCalendar];
NSDateComponents* components = [calendar components:flags fromDate:date];
NSDate* dateOnly = [calendar dateFromComponents:components];

date is the date you want to remove the time from.

This separates the date and time and creates a new date with the default time (00:00:00).

EDIT

To take time zone into account:

NSDate* dateOnly = [[calendar dateFromComponents:components] dateByAddingTimeInterval:[[NSTimeZone localTimeZone]secondsFromGMT]];
share|improve this answer
+1 damn — you were faster – ikinci viking Nov 15 '10 at 18:26
it retained its hour value :o i get 19:00:00 from 19:27:23 – Benjamin Nov 15 '10 at 18:28
1  
Great answer. It is really stupid that commonly needed things like this are not included in Foundation. – Jonathan Sterling Nov 15 '10 at 18:28
This works well, but the reason I prefer using rangeOfUnit:startDate:interval:forDate: is that it's easier to generalize to find other date boundaries like year, minute, hour, etc. NSDateComponents requires that you work out the correct flags for each case. – Rob Napier Nov 15 '10 at 18:30
why 22:00:00 is default hour ? it depends on timezone? – Benjamin Nov 15 '10 at 18:32
show 6 more comments

Use NSCalendar's rangeOfUnit:startDate:interval:forDate:. This code will choose the day boundary based on the current time zone. If you want a particular time zone, you need to create an NSCalendar and set its time zone appropriately.

- (NSDate*)boundaryForCalendarUnit:(NSCalendarUnit)calendarUnit
{
    NSDate *boundary;
    [[NSCalendar currentCalendar] rangeOfUnit:calendarUnit startDate:&boundary interval:NULL forDate:self];
    return boundary;
}

- (NSDate*)dayBoundary
{
    return [self boundaryForCalendarUnit:NSDayCalendarUnit];
}
share|improve this answer
+1 I like this better than the accepted answer. It doesn't run into problems with daylight savings and doesn't require a hack to take time zone into account. – Jonathan Moffatt Oct 22 '11 at 4:25

I would use the description method to get the given date as a string, then modify the string and create your new date with initWithString.

initWithString: Returns an NSDate object initialized with a date and time value specified by a given string in the international string representation format.

  • (id)initWithString:(NSString *)description Parameters description A string that specifies a date and time value in the international string representation format—YYYY-MM-DD HH:MM:SS ±HHMM, where ±HHMM is a time zone offset in hours and minutes from GMT (for example, “2001-03-24 10:45:32 +0600”). You must specify all fields of the format string, including the time zone offset, which must have a plus or minus sign prefix. Return Value An NSDate object initialized with a date and time value specified by aString.
share|improve this answer
nm, evan's solution is better – jakev Nov 15 '10 at 18:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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