Skip to content

Instantly share code, notes, and snippets.

@andkon
Created July 18, 2014 18:27
Show Gist options
  • Save andkon/6ebe5a6d470172d7d2cb to your computer and use it in GitHub Desktop.
Save andkon/6ebe5a6d470172d7d2cb to your computer and use it in GitHub Desktop.
Not sure what's in a dict you GET'd?
NSDictionary *dict = responseObject;
NSLog(@"dict");
for (id key in dict) {
id obj = [dict objectForKey:key];
NSLog(@"key=%@ value=%@ class=%@", key, obj, [obj class]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment