NSDate Convert milliseconds to NSDate.
- by user208041
Hi Guys
I have this 1273636800000
Wed Mar 03 2010 00:00:00 GMT-0500 (EST)
I nee dto convert this milliseonds to NSdate format.
I tried this
NSDate *tr = [NSDate dateWithTimeIntervalSince1970:1273636800000];
and
NSDate *tr = [NSDate dateWithTimeIntervalSinceNow:1273636800000];
But I cat get it to work... anyone had thsi problem and found solution
V