I have some code where i using yajl parser:
NSArray *JSONArray = [tempContainer yajl_JSON];
NSLog(@"array of json is = %@",JSONArray);
and after parsing i got some json data like
{
"account_number": "123",
"some_stuff": "231",
}
My question is next: how i get data from specific value of parsed data.
*ex. i want "account_number" , and i get "123"*