Hello,
in my application I get, using JSON, a timestamp value like this :
- 1278321016000 for 2010-07-05 11:10:16.0 CEST
- 1278436867000 for 2010-07-06 19:21:07.0 CEST
I'm currently storing this value to long type, but I wonder if it is the right way, have I to search thing with NSTimeInterval ?
What would be, after storing this value, the best way to show this in a UILabel object, looking like "YYYY-MM-DD hh:mm:ss" ?
I tried to use NSDate object, but I can't get the initWithTimeIntervalSince1970 method...
Thank you in advance !