I\'ve some problems trying to parse Json using SBJson, I did some research and I can\'t find something helpfull...
I followed some blog about how to do it, but I sti
You get that error because "book" is an array, not a dictionary. If all the results look like this one, that is "book" only has one outer object in it. You can just change the line defining book to :
NSDictionary *book = [[ jsonResults objectForKey:@"result"] lastObject];