一周的开始日期是否存储在 NSLocale 中?

发布于 2024-11-10 16:48:06 字数 149 浏览 2 评论 0原文

我住在荷兰。我们荷兰人喜欢将星期一视为一周的开始。我知道美国人喜欢将周日视为一周的开始。愚蠢的美国人;)

如果我想向我的全球用户呈现周视图,我可以从 NSLocale 获取一周的首选开始日期,还是设置面板是唯一的方法?

干杯, EP。

I live in the Netherlands. We Dutch people like to see Monday as the start of the week. I know that people in the US like to consider Sunday as the start of the week. Silly Americans ;)

If I want to present a week view to my global users, can I get the preferred starting day of the week from NSLocale, or is a settings panel the only way to go?

Cheers,
EP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

如歌彻婉言 2024-11-17 16:48:06

使用以下代码:

NSCalendar *calendar = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];
NSUInteger firstDay = [calendar firstWeekday];

您还可以查看相关问题。

Use the following code:

NSCalendar *calendar = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];
NSUInteger firstDay = [calendar firstWeekday];

You may also check this relevant question.

狼性发作 2024-11-17 16:48:06

接受的答案实际上是不正确的。这是正确的代码:

NSCalendar *calendar = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];
self.weekStartsOnDay = [calendar firstWeekday];

问题是 NSLocaleCalendar 引用的对象实际上是一个日历。

The accepted answer is actually incorrect. Here's the correct code:

NSCalendar *calendar = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];
self.weekStartsOnDay = [calendar firstWeekday];

The issue is that the object referenced by NSLocaleCalendar is actually a calendar.

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