How can I consume this JSon data in iOS 5
({assets = ( { identity = 34DL3611;}, {identity = 34GF0512;}, {identity = 34HH1734;}, {identity = 34HH1736;}, {identity = 34YCJ15;} );
identity = DEMO;})
getting this data on console through this call
id list =[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
NSLog(@"VLIST: %@", list);
Now I have got the data in exact JSON format after using encoding:NSUTF8StringEncoding, I want to use native jsonserializer of iOS 5
NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
the JSON data is:
[{"assets":[{"identity":"34DL3611"},{"identity":"34GF0512"},{"identity":"34HH1734"},{"identity":"34HH1736"},{"identity":"34YCJ15"}],"identity":"DEMO"}]
Now how can I get this data, so that I would get assets array values and populate them in table and get the value of identity(which is DEMO) to use it as a header.
thanx
[NSDictionary description]to me – Michael Dautermann Jan 5 '12 at 13:38[NSDictionary description]: Is this the format how the data is transmitted or is just a sample to illustrate the structure of the data? Do you want to read to data from a file or from a web service? – Codo Jan 5 '12 at 13:48