在Objective-C中解析ISO8601日期(iPhone OS SDK)

时间:2010-05-09 02:31:30

标签: objective-c nsdate iso8601

如何将“2010-04-30T00:45:48.711127”解析为NSDate? (并保持所有精度)

3 个答案:

答案 0 :(得分:4)

你的工作已经完成了。

NSDate会抛出超过3位小数的任何值。您可以创建NSDate的子类来保持该精度,但您还需要实现自己的解析和自定义格式化程序,以便在NSDateFormatterCFDateFormatter之后输入和显示它。它建立在,也会在3位小数后截断精度。取决于你正在做什么,虽然这不应该那么难。

这是一个简单的子类(不实现NSCodingNSCopying),它将保留您提供的所有精度。

@interface RMPreciseDate : NSDate {
    double secondsFromAbsoluteTime;
}

@end

@implementation RMPreciseDate

- (NSTimeInterval)timeIntervalSinceReferenceDate {
    return secondsFromAbsoluteTime;
}

- (id)initWithTimeIntervalSinceReferenceDate:(NSTimeInterval)secsToBeAdded {
    if (!(self = [super init]))
        return nil;

    secondsFromAbsoluteTime = secsToBeAdded;

    return self;
}

@end

然后,您可以要求-timeIntervalSince1970获取UNIX纪元时间。

已经存在ISO8601 date/time parser class,但由于它使用NSDateComponents来生成日期,因此目前仅限于全秒精度,但您可以将其作为起点用于创建更多精确的陈述。

答案 1 :(得分:0)

我将尝试使用此ISO 8601解析器和类似情况下的解析器:http://boredzo.org/iso8601parser/

答案 2 :(得分:-1)

似乎NSDate只有毫秒精度。

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd'T'hh:mm:ss.SSSSSS"];

    NSDate *date = [dateFormatter dateFromString:@"2010-04-30T00:45:48.711127"];

    NSLog(@"%@", date);

    NSString *string = [dateFormatter stringFromDate:date];

    NSLog(@"%@", string);

    [pool drain];
    return 0;
}

该代码产生以下控制台输出:

Program loaded.
run
[Switching to process 27202]
Running…
2010-05-08 20:02:46.342 TestNSDate[27202:a0f] 2010-04-30 00:45:48 -0700
2010-05-08 20:02:46.344 TestNSDate[27202:a0f] 2010-04-30T12:45:48.711000

Debugger stopped.
Program exited with status value:0.

"2010-04-30T00:45:48.711127"变成"2010-04-30T00:45:48.711000"可能不是你的想法。