0

由于时区问题NSDate,我被困在某个地方。NSDateFormatter

我只需要以 UTC(转换为 unix 时间)向服务器发送时间。

这是我正在做的几个步骤:

  1. 从日历中选择一个日期应添加当前时间并转换为 UTC。

  2. 将所选日期与当前日期进行比较。只是想知道所选日期是过去日期还是将来日期。(根据过去/未来/当前日期进行的其他操作很少)。

我试过这段代码:

在一个类别中NSDate

-(NSDate *) toLocalTime{
    NSDate* sourceDate = self;
    NSTimeZone* sourceTimeZone = [NSTimeZone timeZoneWithName:@"UTC"];
    NSTimeZone* destinationTimeZone = [NSTimeZone systemTimeZone];

    NSInteger sourceGMTOffset = [sourceTimeZone secondsFromGMTForDate:sourceDate];
    NSInteger destinationGMTOffset = [destinationTimeZone secondsFromGMTForDate:sourceDate];
    NSTimeInterval interval = destinationGMTOffset - sourceGMTOffset;

    NSDate* destinationDate = [[NSDate alloc] initWithTimeInterval:interval sinceDate:sourceDate];

    return destinationDate;
}

但是当我尝试将日期转换为本地时存在问题(有时我不确定当前时间是否在本地时区)。如果它们是 UTC,那么上述方法可以正常工作。

如果时间已经在本地时区,那么它会再次添加interval,我得到的时间不正确。

我没有想法,请帮助我。

任何想法都将受到高度赞赏。

4

1 回答 1

1

NSDate表示自 1970 年 1 月 1 日以来的 UTC 时间。永远不要试图假装它是别的什么。永远不要试图将 a 想象NSDate特定的当地时间。

因此,您需要的是日历中的日期 + 表示从今天午夜开始的时间的偏移量。

要获得今天 0:00am UTC,您首先需要 UTC 时区的公历。

NSTimeZone* utcTimeZone = [NSTimeZone timeZoneWithName:@"UTC"];
NSCalendar* gregorian = [[NSCalendar alloc] initWithCalendarIdentifier: NSGregorianCalendar];
[gregorian setTimeZone: utcTimeZone];

现在您使用日期组件来获取自 UTC 午夜以来的小时、分钟和秒

NSUInteger unitFlags = NSHourCalendarUnit | NSMinuteCalendarUnit |  NSSecondCalendarUnit;
NSDate *date = [NSDate date];
NSDateComponents *comps = [gregorian components: unitFlags fromDate:date];

如果您的日历日期是 UTC 午夜的日期,您可以获得午夜 UTC + 您的小时、分钟和秒,如下所示:

NSDate* theDateIWant = [gregorian dateByAddingComponents: comps 
                                                 toDate: midnightUTCDateFromCalendar
                                                options: 0];
NSLog(@"The final date is %@", theDateIWant);
于 2013-07-26T12:56:01.247 回答