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?
|
8
|
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?
|
||||
|
|
|
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... |
||
|
|
|
|
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 |
||||
|
|
|
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. |
||
|
|
|
|
|
||||
|
|
|
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
|
||
|
|