两个 NSDate 对象相减
可能的重复:
如何获取 iPhone 中的时差
我正在获取日期和时间来自 JSON 提要。我需要找出从提要中获取的日期与今天的日期和时间之间的差异。有什么建议我可以如何做到这一点?
我知道我需要用从提要中获得的日期减去当前日期,但我不知道该怎么做。
例如:
提要日期:日期:2011-06-10 15:00:00 +0000
今天:Date: 2011-06-10 14:50:00 +0000
我需要显示差异是十分钟。
谢谢!
Possible Duplicate:
How to Get time difference in iPhone
I´m getting date and time from a JSON feed. I need to find the difference between the date I´m getting from the feed and today´s date and time. Any suggestions how I can do this?
I know I need to subtract the current date with the date I get from the feed, but I don´t know how to do it.
Ex:
Date from feed: Date: 2011-06-10 15:00:00 +0000
Today: Date: 2011-06-10 14:50:00 +0000
I need to display that the difference is ten minutes.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 NSDate 的
-dateWithString:
从字符串创建两个 NSDate 对象,然后使用以下方法获取两个 NSdate 对象的差异Create two NSDate objects from the strings using NSDate's
-dateWithString:
, then get the difference of the two NSdate objects using在尝试比较之前,您需要将输入日期转换为
NSDate
对象。格式化程序假定 UTC 偏移量始终为零。如果情况并非如此,请参阅 Microsoft 的日期格式字符串页面了解其他信息您可以使用的格式代码。
--
编辑:其他人使用的
dateWithString
方法在您的情况下会更好,但如果您获得的日期格式字符串不完全正确,则需要日期格式化程序。我认为我从未使用过以正确格式发送日期的 API,也许我只是运气不好:-(。You need to convert the input date to an
NSDate
object before you try and compare.The formatter assumses the UTC offset will always be zero. If this isn't true, see Microsoft's date format string page for other format codes you can use.
--
Edit: the
dateWithString
method that everyone else used will be better to use in your situation, but the date formatter is necessary if the date format string you are getting isn't exactly right. I don't think I've ever used an API that sent dates in the correct format, perhaps I'm just unlucky :-(.从下面的代码中,您将了解比较两个
NSDate
对象。From below code you will get an idea for comparing two
NSDate
objects.