Comparison of JSON Parser for Objective-C (JSON Framework, YAJL, TouchJSON, etc)

If you’re looking for speed, take a look at JSONKit. It is (usually) much faster than the already mentioned JSON libraries, often an order of magnitude faster. And because of it’s “recently instantiated object cache”, it will (again, usually) use less memory as well.

Leave a Comment