I've got a timestamp as a string like:
Thu, 21 May 09 19:10:09 -0700
and I'd like to convert it to a relative time stamp like '20 minutes ago' or '3 days ago'.
What's the best way to do this using Objective-C for the iPhone?
|
I've got a timestamp as a string like:
and I'd like to convert it to a relative time stamp like '20 minutes ago' or '3 days ago'. What's the best way to do this using Objective-C for the iPhone? |
|||||||||
|
|
|||||||||||||||
|
|
Here are methods from Cocoa to help you to get relevant info (not sure if they are all available in coca-touch).
The NSDateComponents object seems to hold the difference in relevant units (as specified). If you specify all units you can then use this method:
If you want to calculate yourself you can have a look at:
And then use seconds in the algorithm. Disclaimer: If this interface is getting deprecated (I haven't checked), Apple's preferred way of doing this via |
|||||||||
|
|
I can't edit yet, but I took Gilean's code and made a couple of tweaks and made it a category of NSDateFormatter. It accepts a format string so it will work w/ arbitrary strings and I added if clauses to have singular events be grammatically correct. Cheers, Carl C-M
|
|||
|
|
|
In the interest of completeness, based on a @Gilean's answer, here's the complete code for a simple category on NSDate that mimics rails' nifty date helpers. For a refresher on categories, these are instance methods that you would call on NSDate objects. So, if I have an NSDate that represents yesterday, [myDate distanceOfTimeInWordsToNow] => "1 day". Hope it's useful!
|
||||
|
|
Use the NSDate class:
returns the interval in seconds. Quick exercise to implement this in objective-c:
Then implement this pseudo code:
and so on... then you need to decide whether a month is 30,31 or 28 days. Keep it simple - pick 30. There might be a better way, but its 2am and this is the first thing that came to mind... |
|||
|
|
|
Not sure why this isnt in cocoa-touch, i nice standard way of doing this would be great. Set up some types to keep the data in, it will make it easier if you ever ned to localise it a bit more. (obviously expand if you need more time periods)
NOTE: I"m using an hour based calculation , as that is what my data is in. NSTimeInterval is second based. I also had to convert between the two. |
|||
|
|
|
Here's a similar solution: https://github.com/acani/acani-iphone/blob/master/Lovers/Classes/PhotoViewController.m#L339 |
|||
|
|
|
My solution:
|
|||
|
|
|
I took Carl Coryell-Martin's code and made a simpler NSDate category that doesn't have warnings about the string formatting of the singulars, and also tidys up the week ago singular:
|
|||
|
|
|
I saw that there were several time ago functions in snippets of code on Stack Overflow and I wanted one that really gave the clearest sense of the time (since some action occurred). To me this means "time ago" style for short time intervals (5 min ago, 2 hours ago) and specific dates for longer time periods (April 15, 2011 instead of 2 years ago). Basically I thought Facebook did a really good job at this and I wanted to just go by their example (as I'm sure they out a lot of thought into this and it is very easy and clear to understand from the consumer perspective). After a long time of googling I was pretty surprised to see that no one had implemented this as far as I could tell. Decided that I wanted it bad enough to spend the time writing and thought that I would share. Hope you enjoy :) Get the code here: https://github.com/nikilster/NSDate-Time-Ago |
||||
|