objective c - iphone JSON Parsing.. How can i parse this data -


this print screen of nsmutablearray.

this 2409,2410,2412 not fix key. coming dynamically.

{

2409 =     (             {         altselectionprice = "2.00";      },             {         altselectionprice = "3.00";     } ); 2410 =     (             {         altselectionprice = "7.00";     },             {         altselectionprice = "0.00";     } ); 2412 =     (             {         altselectionprice = "0.00";     },             {         altselectionprice = "9.00";     },             {         altselectionprice = "5.00";      } ); 

}

thnx in advance.

i on work computer runs windows cannot post exact code. need hold of dictionary in array. may following:

nsdictionary* dict = [mymutablearray objectatindex:0]; 

and iterate on keys in dictionary:

for (id key in [dict keyenumerator]) {     //use key or object of key using [dict objectforkey:key] } 

update: assumed getting array json parser!


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -