NSDateFormatter stringFromDate 不尊重自定义模式的区域设置
我做错了什么?
我正在尝试 getNSDateFormatter 使用当前区域设置转换日期的自定义模式。
示例:
dateFormat = [[NSDateFormatter alloc] init];
dateFormat.locale = [NSLocale currentLocale];
[dateFormat setDateFormat:@"MMM"];
output = [self.dateFormat stringFromDate:dateObject];
无论我将当前的区域设置更改为什么,我总是会看到英文月份缩写。
感谢您提供的任何帮助。
What am I doing wrong?
I am trying to getNSDateFormatter to translate custom patterns for dates using the current locale.
Example:
dateFormat = [[NSDateFormatter alloc] init];
dateFormat.locale = [NSLocale currentLocale];
[dateFormat setDateFormat:@"MMM"];
output = [self.dateFormat stringFromDate:dateObject];
No matter what I change my current locale settings to, I always see the English month abbreviations.
Thanks for any help you can provide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来它一直在工作。我已将位置设置为美国,仅更改语言。要使其正常工作,您必须更改位置和语言。
It looks like it was working all of the time. I had been leaving my location set to United States and changing only the language. To get it to work correctly you have to change the location as well as the language.