NRaf
NRaf

Reputation: 7559

JSON Library for iPhone

I was wondering which iPhone JSON library is best for serializing an object (which will later be read by a Java server). At the moment we're using TouchJSON and I've been told that it can't do serialization.

Any suggestions?

Upvotes: 3

Views: 710

Answers (1)

Jacob Relkin
Jacob Relkin

Reputation: 163308

json-framework can do serialization.

It's so convenient in that it defines some categories on the objects that you would typically want to convert to JSON, such as NSArray or NSDictionary.

Upvotes: 3

Related Questions