iPhone 日期的自然语言处理

发布于 2024-10-16 02:19:03 字数 111 浏览 3 评论 0原文

我的日期格式为“2011 年 5 月 28 日”或“2011 年 2 月 23 日”。我想知道将这些转换为 NSDate 的最佳方法是什么。我正在考虑编写自己的格式化程序,但很好奇是否有内置类可以执行此操作。

I have dates in the format 'May 28, 2011' or 'February 23, 2011'. I want to know what the best way to turn these into NSDate's would be. I am thinking of just writing my own formatter but am curious if there is a built in class to do this.

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

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

发布评论

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

评论(1

把梦留给海 2024-10-23 02:19:03

您不必将其子类化。只需将通用格式化程序的日期样式设置为 NSDateFormatterLongStyle 并从其 -dateFromString: 方法获取日期即可。

You shouldn't have to subclass it. Just set a generic formatter's date style to NSDateFormatterLongStyle and get your date from its -dateFromString: method.

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