I need to convert date in milliseconds (Date(1322030548000+0530)) into corresponding date like Thu Sep 29 20:56:00 GMT+02:00 (its just an example). How can I do that?
Thanks.
I need to convert date in milliseconds (Date(1322030548000+0530)) into corresponding date like Thu Sep 29 20:56:00 GMT+02:00 (its just an example). How can I do that?
Thanks.
What you'll want to look for is code such as:
dateWithTimeIntervalSince*:seconds
where * is 1970, Now, ReferenceDate
An example and answer is given in the link here: Convert milliseconds to NSDate