NSDate / NSDateFormatter retornando GMT no iPhone iOS 4.3

Por que esse código estaria me dando GMT? (Estou no horário das montanhas dos EUA)

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];

questionAnswers(2)

yourAnswerToTheQuestion