I have been reading that there is a now library in ios 5 that allows you to serialize & deserialize JSON data. I can\'t for the life of me find examples or the framework in
Using following simple code you can convert web data into JSON .
In this code "webData" is the data you get when you hit web service.
webData
NSError *jsonParsingError = nil; NSArray *result=[NSJSONSerialization JSONObjectWithData:webData options:0 error:&jsonParsingError];