当用户没有使用公历作为iPhone的默认日历时,我遇到使用NSDateFormatter的问题。
NSString *testString = @"2011-01-14";
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"yyyy-MM-dd"];
NSDate *eventDate = [dateFormat dateFromString:testString];
[dateFormat setDateFormat:@"yyyy-MM-dd(EEE)"];
NSString *dateAndLocString = [dateFormat stringFromDate:eventDate];
[dateFormat release];
在使用公历日历的设备上,dateAndLocString将等于2011-01-13(星期四) 但是当用户使用日历时,dateAndLocString将等于2011-01-13(周三),这是错误的。
任何人都知道我可能做错了什么?
答案 0 :(得分:4)
我找到了一种让它正常工作的方法,如果有人有更好的建议请告诉我。我们必须使用以下代码行在NSDateFormatter上设置首选用户本地。
[dateFormat setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:[[NSLocale preferredLanguages] objectAtIndex:0]] autorelease]];
这将为NSDateFormatter提供正确的用户区域设置。有些人可能会想要使用
[dateFormat setLocale:[NSLocale currentLocale]];
但是,即使用户语言设置为日语,具有日语日历的系统上的[NSLocale currentLocale]
也会返回en_US @ calendar = japanese。
我不知道为什么NSDateFormatter不会在非Gregorian日历上自动运行。