将包含日期的 NSString 转换为天前
可能的重复:
Objective-C 中的模糊日期算法
我有一个 NSString 从包含日期的 xml 中解析,例如
5 月 10 日星期一 23:26:22 +0000 2010
我很难将 NSString“日期”转换为更有效的内容,例如
5小时前
昨天
一周前
如果有人能指出我如何尝试此操作的正确方向,我将不胜感激。
Possible Duplicate:
Fuzzy Date algorithm in Objective-C
I have a NSString
parsed from a xml that contains a date such as
Mon May 10 23:26:22 +0000 2010
I am having a difficult time converting that NSString "date" to something more efficient, such as
5hrs ago
Yesterday
a Week ago
If anyone can point me in the right direction as how to attempt this it would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我完全明白你的意思。试试这个,我一直在用这个&它非常适合我 -
用法 -
[Utils humanDates:timeSinceEpoch];
I know exactly what you mean. Try this, I have been using this & it works perfectly for me -
Usage -
[Utils humanDates:timeSinceEpoch];
我这样做
首先我写下这样的功能
,它对我有用,就像iPhone上的拨号应用程序上的日期提醒一样
i do in this way
first i write down function like this
and it work for me like the day reminder on the dial app on the iphone