iPad 模拟器和设备之间 NSDateFormatter 的差异

发布于 2024-12-06 18:09:38 字数 399 浏览 0 评论 0原文

我使用以下代码来解析日期字符串:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"EEE',' dd MMM yyyy HH:mm:ss ZZZ"];
NSDate *lastUpdate = [dateFormatter dateFromString:@"Fri, 16 Sep 2011 11:11:35 GMT"];
[dateFormatter release];

它在模拟器中运行良好,但是当我设置断点并查看实际设备上的 lastUpdate 值时,我看到“无效的 CFStringRef”,而不是正确的日期就像在模拟器中一样。

我在这里缺少什么?

i'm using the following code to parse a date string:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"EEE',' dd MMM yyyy HH:mm:ss ZZZ"];
NSDate *lastUpdate = [dateFormatter dateFromString:@"Fri, 16 Sep 2011 11:11:35 GMT"];
[dateFormatter release];

it works prefectly in the simulator but when i set a breakpoint and look at the value for lastUpdate on an actual device, i see an "invalid CFStringRef" there instead of the correct date like in the simulator.

what am i missing here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

公布 2024-12-13 18:09:38

设备上的区域设置与模拟器上的区域设置相同吗?您可能需要在日期格式化程序上强制使用美国区域设置

Is the locale on the device the same as the simulator? You may need to force a US locale on the date formatter

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文