How can I go about pulling a single rating value out of a JSON dictionary? The rating value resides only in the parent JSON dictionary (it is not nested). My code is here:
- (void) connectionDidFinishLoading:(NSURLConnection *)connection
{
NSDictionary *allDataDictionary = [NSJSONSerialization JSONObjectWithData:webData options:0 error:nil];
for (NSDictionary *diction in allDataDictionary)
{
NSString *rating = [diction objectForKey:@"rating"];
[array addObject:rating];
}
[[self myTableView] reloadData];
}
Secondly, how can I make an If statement to convert the rating value to an NSString for it to appear on the iPhone simulator?


NSArray *array = [allDataDictionary valueForKey:@"rating"];Does that resolve your issue? – ACB Jan 27 at 0:01[[array objectAtIndex:indexPath.row] stringValue];. Can you please add that to the question with required details. We can resolve it. – ACB Jan 27 at 0:14