How to parsing NSDate to RFC 822 always use in English?
问题 I need to PUT a RESTful to server. the Date must use like Sat, 19 Jan 2013 04:09:58 GMT . in objc I wrote this: NSDateFormatter* _GMTDateFormatter = [[NSDateFormatter alloc] init]; [_GMTDateFormatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss"]; [_GMTDateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]]; NSString* theDate = [_GMTDateFormatter stringFromDate:[NSDate date]]; theDate = [theDate stringByAppendingString:@" GMT"]; NSLog(@"%@",theDate); it will be output Sat, 19 Jan