我在将短 Zulu 日期格式转换为 NSDate 对象时遇到了麻烦。我找到了一些转换祖鲁字符串的答案,但我的看起来像:
20111210T1000
根据我的研究,我正在尝试做:
NSDateFormatter *f = [[NSDateFormatter alloc] init];
[f setDateFormat:@"yyyyMMdd'T'HHmmss Z"];
NSDate *date = [f dateFromString:[str stringByReplacingOccurrencesOfString:@"Z" withString:@" +0000"]];
[f release];
我已经尝试了很多方法,但我的约会仍然为零......
我应该如何设置我的 NSDateFormatter?