iPhone: NSDate convert GMT to local time

后端 未结 4 1520
渐次进展
渐次进展 2020-12-14 11:49

I currently have an API call returning me a date/time in the format: 2010-10-10T07:54:01.878926

Can I assume this is GMT? I also converted this to an NS

4条回答
  •  囚心锁ツ
    2020-12-14 12:27

    NSDate *sourceDate = [NSDate dateWithTimeIntervalSince1970:gmtTimestamp];
    NSTimeZone* destinationTimeZone = [NSTimeZone systemTimeZone];
    NSInteger sourceGMTOffset = [destinationTimeZone secondsFromGMTForDate:0];
    NSInteger destinationGMTOffset = [destinationTimeZone secondsFromGMTForDate:sourceDate];
    NSTimeInterval interval = destinationGMTOffset - sourceGMTOffset;
    NSDate* destinationDate = [[[NSDate alloc] initWithTimeInterval:interval sinceDate:sourceDate] autorelease];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    dateFormatter.dateFormat = @"yyyy-MM-dd'T'HH:mm";
    [dateFormatter setTimeZone:destinationTimeZone];
    NSString *localTimeString = [dateFormatter stringFromDate:destinationDate];
    

提交回复
热议问题