Modifying NSMutableDictionary from a single index format into nested (array within array)
- by Michael Robinson
I need to take the member ID off the top of this and create an array inside that contains the rest of the JSON return. Here is my JSON return.
[{"F_Name_VC":"Frank",
"L_Name_VC":"Johnson",
"userid":"18",
"age":"23",
},]
After it is json-deserialized it looks like this:
I need convert it to be transformed into this, with…