I have this time in milliseconds that i am receiving in an XML feed, and i need to display this time in any appropriate form, that anyone can understand.
can anyone guide me on how to achieve such behavior?
thank you.
Note: the millis time that i am getting is in UNIX time.
Use
NSDate‘sdateWithTimeIntervalSince1970:method by dividing your timestamp by1000.0.You can refer to this question for more details on formatting.