Does anyone know how to convert a JSON date(ticks) to an NSDate in Objective-C? Can someone post some code?
|
|
I'm guessing here but your JSON value is the number of milliseconds since 1970, right? You can use NSDate's |
||
|
|
You'd have to detect the client's locale in order to be able to do that, and unless your client knows how to do that, there's probably not much point. NSDate's descriptionWithLocale: would be the way you format it for another locale. And timeIntervalSince1970 will go back to the (seconds) since 1970, which you could multiply by 1000 to get ms to return to the client. It's all in the NSDate documentation. |
||
|
|
