NSDateFormatter stringFromDate 不尊重自定义模式的区域设置

发布于 2024-10-01 14:07:22 字数 364 浏览 5 评论 0原文

我做错了什么?

我正在尝试 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梨涡 2024-10-08 14:07:22

看起来它一直在工作。我已将位置设置为美国,仅更改语言。要使其正常工作,您必须更改位置和语言。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文