iOS: Serialize/Deserialize complex JSON generically from NSObject class

Finally we can solve this problem easily using JSONModel. This is the best method so far. JSONModel is a library that generically serialize/deserialize your object based on Class. You can even use non-nsobject based for property like int, short and float. It can also cater nested-complex JSON. 1) Deserialize example. By referring to above example, … Read more