如何获取周一、周二等工作日的本地化字符串表示形式?
如何获取周一、周二等工作日的本地化字符串表示形式?
当然我可以自己本地化这些,但我打赌我可以从日历类或类似的东西中吸取它们?
How to obtain a localized string representation of the weekdays like monday, tuesday, etc.?
Sure I could localize these myself but I bet that I can suck them out from a calendar class or something similar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是你想要的:
输出:
享受吧!
This is what you want:
Output:
Enjoy!
给定一个有效的
NSDate
,NSDateFormatter
可以使用 日期格式@“EEEE”
。我不知道在 Cocoa 中有更简单的方法可以做到这一点。Given a valid
NSDate
,NSDateFormatter
can output the name of the weekday with the date format@"EEEE"
. I don't know of a simpler way to do this in Cocoa.为什么不直接使用 monthSymbols 来自 NSDateFormatter 的数组?
Why don't you just use the monthSymbols array from NSDateFormatter?