iPad 模拟器和设备之间 NSDateFormatter 的差异
我使用以下代码来解析日期字符串:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设备上的区域设置与模拟器上的区域设置相同吗?您可能需要在日期格式化程序上强制使用美国区域设置
Is the locale on the device the same as the simulator? You may need to force a US locale on the date formatter