vote up 6 vote down star
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?

flag

4 Answers

vote up 9 vote down check

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.

link|flag
any benchmarks available which show the better performance? – catlan Nov 13 '08 at 14:50
1  
I the author of TouchJSON. I have aggressively optimised it for speed and memory usage. Inside the TouchJSON folder is a benchmarking project you can use to check out the speed. I'll get around to publishing benchmarks myself one day. – schwa Nov 14 '08 at 3:52
4  
just to let anyone know: TouchJSON available in: code.google.com/p/touchcode :) – balexandre Jan 9 at 11:01
vote up 0 vote down

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.

link|flag
vote up 1 vote down

I have been using the json-framework from on google code. It has worked very well for me.

link|flag
vote up 5 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.