Search Results

9
votes

Best JSON library to use when developing an iPhone application?

Touch JSON tends to be the best in terms of speed and unit test coverage. It's also the most widely adopted and actively developed. …
1
vote

Deserializing a complex JSON result (array of dictionaries) with TouchJSON

At it's heart JSON deals with objects, your code to de-serialize should be as follows {"objects":[{"id": "123456", "name": "touchjson"}, {"id": "3456", "name": "bleh"}]} …