使用 Objective C 进行日期时间转换
我有一个日期/时间,它们来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
NSDateFormatter
。您需要指定dateFormat
,您可以使用的模式是 可在此处获取。Use an
NSDateFormatter
. You'll need to specify thedateFormat
, and the patterns you can use are available here.