我正在尝试将 NSDate 转换为本地时区。我正在这样做
dateTimeFormatter = [[NSDateFormatter alloc] init];
[dateTimeFormatter setTimeZone:[NSTimeZone localTimeZone]];
[dateTimeFormatter setDateFormat:@"MMM d', 'yyyy', 'h':'mm a zzz"];
日期看起来像这样2013-10-05 11:00:00 +0000
。我得到的时间是下午 04:30,应该是凌晨 4:30。无论如何让它工作?
NSString *str = [dateTimeFormatter stringFromDate:myDate];