标签:
在使用日历使用中,获取星期的时候
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"EEE"];
得到的String 是 “Mon” “Wed”....
如果想要得到中文 “周一” “周三” 的可以用以下的方法:
NSLocale *zh_Locale = [[NSLocale alloc] initWithLocaleIdentifier:@"zh-Hans"];
[dateFormatter setLocale:zh_Locale];
如果想根据机子设置的语言获取不同的星期字符,可以用
如果想根据机子设置的语言获取不同的星期字符,可以用
或者用这个
NSLocale *zh_Locale = [[NSLocale alloc] initWithLocaleIdentifier:[self getPreferredLanguage]];
[dateFormatter setLocale:zh_Locale];
其他的月份也可用这种方法
iphone--有关日历中NSDateFormatter中英文
标签:
原文地址:http://www.cnblogs.com/56ik/p/5155070.html