Finally, I got a very simple and fast Model class generator tool for iOS and Android . just copy and paste your answer and get the Model Class from the tool.

Use like this β> For example, your JSON Respoce dictionary
{"employees":[ {"firstName":"John", "lastName":"Doe"}, {"firstName":"Anna", "lastName":"Smith"}, {"firstName":"Peter", "lastName":"Jones"} ]}
create an Array Employee, and then create an Object With Created Model Classes, as shown below, and you should use For loop or enumerateObjectsUsingBlock any to create and then Add to Mutable Array.
NSArray * arrTemp = [NSArray arrayWithArray: yourResponceDict [@ "employees]]; NSMutableArray * myMutableArray = [NSMutableArray array];
[arrTemp enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { Employee *aObj = [Employee modelObjectWithDictionary:obj]; [myMutableArray addObject:aObj]; }];
This tool is very simple and saves time for creating Json object classes for data analysis anywhere in the development.
source share