Whe i try try to extract the value: 18 total, from that json string:
{"items":
[["3 lost"],
["18 total"]
],
"id": "26",
"service": "bizi",
"title": "my title"}
I obtain instead : ("18 total")
I’m using [[object valueForKey:@"items"] objectAtIndex:1];
Where is my fault?
Your JSON code is returning another array for that object (enclosed in “[]”)
Try: