DateFormatter
static NSDateFormatter *formatter = nil; // cache this the first time throughif (formatter == nil) { formatter = [NSDateFormatter new]; formatter.locale = [[[NSLocale alloc] initWithLocaleIDentifIEr:@"en_US"] autorelease]; // Fix for QC79748 - Michael marceau formatter.dateFormat = @"EEE,d MMM yyyy HH:mm:ss zzz"; formatter.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"EST"]; formatter.calendar = [[[NSCalendar alloc] initWithCalendarIDentifIEr:NSGregorianCalendar] autorelease]; formatter.locale = [[[NSLocale alloc] initWithLocaleIDentifIEr:[[NSLocale preferredLanguages] objectAtIndex:0]] autorelease];}NSLog(@"CorrectDate%@",[serviceheaders safeObjectForKey:@"Date"] ); NSLog(@"Formatted date:%@",[formatter dateFromString:[serviceheaders safeObjectForKey:@"Date"]]);OutputCorrect - Mon,27 Aug 2012 16:33:14 GMTFormatted date:0024-08-27 16:33:14 +0000解决方法 这是正常的.我拿了你的代码并将它添加到我的项目中,然后将模拟器设置为使用佛教日历.
NSLog(@"date=%@",[NSDate date]);2012-08-27 18:42:10.201 Searcher[43537:f803] date=2555-08-27 22:42:10 +0000 NSDateFormatter *formatter = [NSDateFormatter new]; formatter.locale = [[NSLocale alloc] initWithLocaleIDentifIEr:@"en_US"]; // Fix for QC79748 - Michael marceau formatter.dateFormat = @"EEE,d MMM yyyy HH:mm:ss zzz"; formatter.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"EST"]; formatter.calendar = [[NSCalendar alloc] initWithCalendarIDentifIEr:NSGregorianCalendar]; //formatter.locale = [[NSLocale alloc] initWithLocaleIDentifIEr:[[NSLocale preferredLanguages] objectAtIndex:0]];
然后输出:
NSLog(@"CorrectDate%@",@"Mon,27 Aug 2012 16:33:14 GMT" );2012-08-27 18:42:10.203 Searcher[43537:f803] CorrectDateMon,27 Aug 2012 16:33:14 GMTNSLog(@"Formatted date:%@",[formatter dateFromString:@"Mon,27 Aug 2012 16:33:14 GMT"]);2012-08-27 18:42:10.206 Searcher[43537:f803] Formatted date:2555-08-27 16:33:14 +0000
分析:
一切都很完美.在佛教历法中,现在是2555年.当您提供格里高利日期,并要求格式化程序使用格里高利历时,它会正确读取,然后将其转换为佛教日期,当您打印出日期时,日期再次为2555.正是你所期待的.
编辑:只是按下这一点,NSDate始终是相同的,它的表示有什么变化.所以我再次将日历设置为Buddhist,并使用格式化程序获取格里高利时间的当前时间:
NSLog(@"date=%@",[NSDate date]);NSLog(@"Date using the Gregorian calendar: %@",[formatter stringFromDate:[NSDate date]]);
输出
2012-08-28 07:13:10.658 Searcher[69194:f803] date=2555-08-28 11:13:10 +00002012-08-28 07:13:10.660 Searcher[69194:f803] Date using the Gregorian calendar: Tue,28 Aug 2012 07:13:10 EDT
PS:您的代码设置了两次区域设置.
总结以上是内存溢出为你收集整理的iphone – nsdateformatter不使用日历全部内容,希望文章能够帮你解决iphone – nsdateformatter不使用日历所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)