vote up 1 vote down star

I would like to subtract 4 hours from a date. I read the date string into an NSDate object use the following code:

NSDateFormatter * dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSDate * mydate = [dateFormatter dateFromString:[dict objectForKey:@"published"]];

What do I do next?

flag

4 Answers

vote up 2 vote down

NSCalendar is the general API for changing dates based on human time units. For this, you can use NSCalendar's -dateByAddingComponents:toDate:options: with a negative number of hours.

link|flag
This is a much better approach--it deals with DST, leap years, all that. – drewh Jul 21 at 21:24
vote up 0 vote down
NSDate *newDate = [theDate addTimeInterval:-3600*4];

Link to documentation.

Strange that this method returns a new NSDate object, it completely differs from the naming conventions. I wonder if the returned date is autoreleased, probably yes.


NSDate *newDate = [[[NSDate alloc] initWithTimeInterval:-3600*4
                                              sinceDate:theDate]] autorelease];

Link to documentation.

link|flag
vote up 0 vote down check

Still not working.... what am I doing wrong?

NSDateFormatter * dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSString * datetemp = [dict objectForKey:@"published"];
NSString * theDate = [dateFormatter dateFromString:datetemp];
NSDate *newDate = [theDate addTimeInterval:-3600*4];
self.dateLabel.text = newDate;
link|flag
Update your question, don't just post your update as an answer. – unknown (google) Jul 21 at 19:46
self.dataLabel.text is an NSString, but you're setting it to an NSDate. For a quick-and-dirty hack, try self.dateLabel.text = [newDate description]; (for cleaner, use an date formatter to format the date the way you like). – Daniel Dickison Jul 21 at 19:47
I had to remove the 'Z' and other chars from the date before it would format properly. – Miriam Roberts Aug 11 at 16:03
vote up 0 vote down

Hey Miriam,
dateFromString function returns NSDate, not NSString. you should change,

NSDate * theDate = [dateFormatter dateFromString:datetemp];

hope it helps,
bests.
G.

link|flag

Your Answer

Get an OpenID
or

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