There are a few JSON libraries/frameworks available for objective-c developers, but I wanted to get the opinion of the resident gurus here on which one is the best, and why.
Any thoughts?
|
7
|
There are a few JSON libraries/frameworks available for objective-c developers, but I wanted to get the opinion of the resident gurus here on which one is the best, and why. Any thoughts?
|
|||
|
|
|
|
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. |
||||||||||
|
|
|
I think "best" depends on what features you're interested in. If you are after a JSON parser/generator that strictly follows the JSON protocol, then you could do worse than use json-framework. (Disclaimer: I am its author.) It also has a features such as protection against deeply nested structures (could break the stack if left to run wild), pretty-printing the JSON output and sorting the dictionary keys. (This is useful if you want/need to make sure the key ordering in the output is the same after adding/removing entries to a dictionary. Good for automated tests, for example.) There is on-line documentation generated from the source available. |
||
|
|
|
|
I have been using the json-framework from on google code. It has worked very well for me. |
||
|
|
|
|
I've had a great experience with http://code.google.com/p/json-framework/ - it was last updated September 20th, so it's not too far behind, and the API is simple and effective. |
||
|
|