Frage

From ASP MVC API JSON I have this date

... expdate: "2013-11-16T21:16:15.4302648-08:00" ...

I have this model

@interface DateModel: JSONModel

@property (strong, nonatomic) NSDate* expdate;


@end

But returns nil I tried changing the data type to string for testing and returns the date string, why transformers is not kicking? ..

War es hilfreich?

Lösung

Unfortunately in this version JSONModel does not support milliseconds in the dates by default. You can see how to implement a date parser featuring milliseconds and more here, just follow the conversation:

https://github.com/icanzilb/JSONModel/pull/123

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top