我有这样的约会:Sun, 30 Jun 2013 16:00:00
我已经创建了这个NSDateFormatter:
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss"];
但是当我将它与dateFromString一起使用时,它返回nil。
怎么了?
谢谢!
答案 0 :(得分:0)
这样可以解决吗? (也许您的设备位于不了解Sun或Jun的区域设置中)
dateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];