ios - Convert ms timestamp to NSString date -


I know that many iOS conversions have been asked before questions but I can not find any way to solve my problem Used to be.

I want to convert a millisecond timestamp (129970800) to a correct, human readable date, but how?

Something like this "March 12, 2011" is enough thanks!

Use

  [NSDate dateWithTimeIntervalSince1970: (ms / 1000 )];   

Perception MS holds an integer or a number of milliseconds for a long time.

Comments