Is there any tool which can convert my XML PLIST into JSON. I do not have much idea on JSON formatting. I have a PLIST for which I want an equivalent JSON file.
Also, how do we process JSON response on iOS client using objective C. I have worked with PList response so far.
Others have previously asked about converting .plist files to json here.
Once you have your data in a json format, you can then use Apple’s
NSJSONSerializationclass, documented here:There are other libraries you can use, though, some of which you will find in the answers to this question.