iOS9升级后,NSDateFormatter.dateFromString返回null

前端之家收集整理的这篇文章主要介绍了iOS9升级后,NSDateFormatter.dateFromString返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的一个应用程序在刚刚升级到iOS9的设备上运行后出现问题(应用程序的目标是8.1).

该应用程序在iOS9之前正常运行,但是,在仅在设备上升级到iOS9后,会出现以下问题.

下面名为’anObsDate’的变量现在返回null.我不知道为什么.似乎主机设备上的iOS9独立升级已经触发了这个问题.

NSDate *anObsDate = [[self bomDateFormatter] dateFromString:[anObs timeStamp]];

当我使用以下调试运行应用程序时,我们有这个输出

NSLog(@"Timestamp %@",[anObs timeStamp]);
     NSLog(@"Formatter %@",[self bomDateFormatter]);
     NSDate *anObsDate = [[self bomDateFormatter] dateFromString:[anObs timeStamp]];

Timestamp 2015-09-17 00:01:10
Formatter <NSDateFormatter: 0x7fe7abc653c0>

我将日期格式化程序设置如下:

NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_AU"];
NSDateFormatter *countDownFormatter = [[NSDateFormatter alloc] init];
[countDownFormatter setLocale:locale];
[countDownFormatter setTimeZone:[NSTimeZone timeZoneWithName:@"Australia/Melbourne"]];
[countDownFormatter setDateFormat:@"yyyy'-'MM'-'dd'T'HH':'mm':'ss"];
return countDownFormatter;

再说清楚,如果我在iOS9设备上运行我的应用程序,一切正常,dateFromString返回一个NSDate.升级到iOS9后,dateFromString返回null.

有什么建议?

谢谢.

解决方法

似乎NSDateFormatter在iOS 9中的行为发生了变化,因此日期格式中的单引号字符必须与字符串中的字符完全匹配.以前它会接受任何字符(搜索文档,但找不到任何提及此更改).

时间戳字符串缺少以日期格式定义的“T”.尝试将日期格式更改为:

// Note the "T" has been removed
[countDownFormatter setDateFormat:@"yyyy'-'MM'-'dd' 'HH':'mm':'ss"];

您的另一个选择是将“T”添加到时间戳字符串中:

// Note the "T" has been added
2015-09-17T00:01:10

这应该与以前版本的iOS向后兼容.

原文链接:https://www.f2er.com/iOS/334515.html

猜你在找的iOS相关文章