Skip to content

Instantly share code, notes, and snippets.

@pier-oliviert
Created February 11, 2011 13:55
Show Gist options
  • Select an option

  • Save pier-oliviert/822369 to your computer and use it in GitHub Desktop.

Select an option

Save pier-oliviert/822369 to your computer and use it in GitHub Desktop.
NSArray *receivedInstances = [[[request responseString] JSONValue] valueForKeyPath:@"groups.instances"];
NSMutableArray *ids = [NSMutableArray array];
for (NSDictionary *dict in receivedInstances) {
[ids addObject:[dict valueForKey:@"id"]];
}
//Do something with the ids...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment