I have such response from server Date = "/Date(1348783200000+0200)/" how can I parse it to timestamp or date (example: Monday 21, September, 2012)?? please help..
I have such response from server Date = /Date(1348783200000+0200)/ how can I parse it
Share
It looks like your date is in milliseconds. You will need to divide by 1000 and cast it into an
NSDateafter that. Then you can just useNSDateFormatterwithNSDateFormatterLongStyleto show the date in that format.