我只想在我的 iPad 应用程序中显示当前月份和年份,如“2012 年 11 月”,我目前正在将月份格式化为“MMMM”,将年份格式化为“yyyy”并将它们连接起来。这适用于大多数语言环境,但不适用于“中国”地区。
我当前的代码将“中国”地区的月份和年份显示为,
但是,这是不对的。就像它显示在 iOS 日历应用程序中一样,
关于如何实现这一点的任何想法?
编辑 1:
NSDate *date = [NSDate date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateFormat=@"MMMM";
NSString * monthString = [[dateFormatter stringFromDate:date] capitalizedString];
dateFormatter.dateFormat=@"yyyy";
NSString * yearString = [[dateFormatter stringFromDate:date] capitalizedString];
lblMonthAndYear.text = [NSString stringWithFormat"%@ %@",monthString,yearString];
Best Answer-推荐答案 strong>
我认为你的日期格式化程序根本没有使用语言环境,这里的关键是使用当前语言环境创建模板,而不仅仅是格式字符串,例如:
NSString *dateFormat = [NSDateFormatter dateFormatFromTemplate"MMMM d"
options:0
locale:[NSLocale currentLocale]];
dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateFormat = dateFormat;
关于ios - 在 iOS 中格式化月份和年份,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/13486013/
|