1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
JSON Framework
==============
JSON is a light-weight data interchange format that's easy to read and
write for humans and computers alike. This framework implements a strict
JSON parser and generator in Objective-C.
Features
--------
* BSD license.
* Easy-to-use API.
* Strict parsing & generation.
* Stack of error available in case of failure so you can easily figure out what is wrong.
* Optional pretty-printing of JSON output.
* Optionally sorted dictionary keys in JSON output.
* Configurable recursion depth for parsing, for added security.
Links
-----
* The GitHub [project page][src].
* The online [API documentation][api].
* The new [website][web].
[api]: http://stig.github.com/json-framework/api
[web]: http://stig.github.com/json-framework
[src]: http://github.com/stig/json-framework
|