How to create model objects from Json Schema / Json in xcode (swift)?

I created Json(s) for each java class using the Gson library. Some of them are hierarchical in nature, while others are completely independent. I am looking for a way to convert these Json to a simple object (getter and setter methods) in swift . Is there any way to do this? For Java, we can convert them using JsonSchema2Pojo

+5
source share
1 answer

try JSON4SWIFT .

I feel the equivalent of jsonschema2pojo in java

0
source

All Articles