OStack程序员社区-中国程序员成长平台

标题: ios - 在 iOS 中格式化月份和年份 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:49
标题: ios - 在 iOS 中格式化月份和年份

我只想在我的 iPad 应用程序中显示当前月份和年份,如“2012 年 11 月”,我目前正在将月份格式化为“MMMM”,将年份格式化为“yyyy”并将它们连接起来。这适用于大多数语言环境,但不适用于“中国”地区。

我当前的代码将“中国”地区的月份和年份显示为,

enter image description here

但是,这是不对的。就像它显示在 iOS 日历应用程序中一样,

enter image description here

关于如何实现这一点的任何想法?

编辑 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-推荐答案


我认为你的日期格式化程序根本没有使用语言环境,这里的关键是使用当前语言环境创建模板,而不仅仅是格式字符串,例如:

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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4