-2

i need to parse simple JSON php in my tableview for that i searched and tried loy but didnt get it. please suggest me proper link from where i can download the same.

Ajit Satarkar
  • 717
  • 6
  • 20
  • Possible duplicate of http://stackoverflow.com/questions/2256625/comparison-of-json-parser-for-objective-c-json-framework-yajl-touchjson-etc – Adam Jun 14 '12 at 09:20

3 Answers3

1

I hope one of my former posts can help you. I think this is what you inteded: json_encode equivalent for objective-c

Please note that this is only available in iOS 5 and later. If you need other solutions you'll have to use something like this.

Community
  • 1
  • 1
pbx
  • 1,137
  • 7
  • 15
1

Personnaly i'm using SBJson

http://stig.github.com/json-framework/

it work pretty well

You can see an usage example here : http://jasarien.com/?p=428

Damien Locque
  • 1,810
  • 2
  • 20
  • 42
1

JSONKit : https://github.com/johnezang/JSONKit

MTJSON : https://github.com/mysterioustrousers/MTJSON

  • yajl-objc : https://github.com/gabriel/yajl-objc TouchJSON : https://github.com/TouchCode/TouchJSON JSON-FrameWork : https://github.com/stig/json-framework/ – hunter wang Jun 14 '12 at 09:32