Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why would this code be giving me GMT? (I am in US Mountain Time)

NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init]  autorelease];
[dateFormatter setDateStyle:NSDateFormatterLongStyle];
[dateFormatter setTimeStyle:NSDateFormatterLongStyle];
[dateFormatter setLocale:[NSLocale currentLocale]];     

NSDate *now = [NSDate date];
NSString *storeTime = [dateFormatter stringFromDate:now];
share|improve this question
Can you write the complete date you are getting? – Nitish Aug 26 '11 at 4:00
2  
Try [dateFormatter setTimeZone:[NSTimeZone localTimeZone]] – EmptyStack Aug 26 '11 at 5:01
Well, it is exactly 6 hours in the future, so GMT instead of my local mountain time. For example, at 9:30pm last night I was getting – Andrew Smith Aug 26 '11 at 17:30
Aug 26, 2011 3:30 AM – Andrew Smith Aug 26 '11 at 17:30
I tried [dateFormatter setTimeZone:[NSTimeZone localTimeZone]]; But I get the same result -- GMT not mountain time. – Andrew Smith Aug 26 '11 at 17:35
show 1 more comment

2 Answers

An NSDate represents a concrete point in time, regardless of the timezone. Put another way, an NSDate does not have a timezone. Timezones are only relevant when you want to display the date to the user. So 9:30pm in Mountain Time is 3:30am (+1 day) in GMT (assuming a 6 hour time difference).

NSDate, since it does not have a timezone, must pick one when producing a human-readable version to return as its -description. To make things simple, it always returns a date formatted in the GMT time zone. If you would like the date formatted to be in a different timezone, you can set the -timezone property of an NSDateFormatter, and then convert the date into a string using the -stringFromDate: method.

share|improve this answer

Yes, turns out this was a bug in Apple's Numbers on the Mac. Numbers was not interpreting the date string, or rather it was adding the time offset. The NSDate string, after formatting, was correct all along.

share|improve this answer

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.