Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
NSLog is your friend. Log the output of the JSON parser and see what it looks like. (The "JSON script" you show above is not valid JSON, so it's hard to guess what you actually have.) – Hot Licks Jan 26 at 4:02
BTW, if, as you say, the data "is not nested", why are you looking for nested dictionaries inside the main dictionary?) (If it is, indeed, a dictionary and not an array.) – Hot Licks Jan 26 at 4:03
2  
"Your" code (the code you blindly copied from somewhere) is attempting to find dictionaries in an outer dictionary. Whether you're "looking" for that or not. – Hot Licks Jan 26 at 13:49
1  
@greg23af, Try this NSArray *array = [allDataDictionary valueForKey:@"rating"]; Does that resolve your issue? – ACB Jan 27 at 0:01
1  
If it is an NSNumber, you can use [[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
show 11 more comments

1 Answer

up vote 1 down vote accepted

In order to fetch all the ratings objects from the dictionary, you can use:

NSArray *array = [allDataDictionary valueForKey:@"rating"];

This depends on the JSON representation and the structure of your data set.

For the second issue, if this object is an NSNumber, you can try this:

if ([[array objectAtIndex:indexPath.row] isKindOfClass:[NSNumber class]]) {
     cell.textLabel.text = [[array objectAtIndex:indexPath.row] stringValue];
}

Note that you have to use isKindOfClass method to check for the class and stringValue to convert to string.

share|improve this answer
1  
Thank you for your help! – greg23af Jan 27 at 0:38
Glad to help. Thanks for accepting. :) – ACB Jan 27 at 0:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.