使用 Objective C 进行日期时间转换

发布于 2024-11-08 13:49:38 字数 120 浏览 0 评论 0原文

我有一个日期/时间,它们来自 Apache 服务器,格式如下:

2011-05-20T14:21:00.103-04:00

我如何将此日期/时间转换为 NSDate...

谢谢

I have a Date/Time they come from a Apache server in this format :

2011-05-20T14:21:00.103-04:00

How I can convert this Date/Time to NSDate...

Thanks

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

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

发布评论

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

评论(2

白云不回头 2024-11-15 13:49:38

使用 NSDateFormatter。您需要指定 dateFormat,您可以使用的模式是 可在此处获取

Use an NSDateFormatter. You'll need to specify the dateFormat, and the patterns you can use are available here.

从此见与不见 2024-11-15 13:49:38
[NSDate dateWithString:@"2011-05-20T14:21:00.103-04:00"];
[NSDate dateWithString:@"2011-05-20T14:21:00.103-04:00"];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文