Skip to content

Instantly share code, notes, and snippets.

@electronicbites
Created November 4, 2010 15:03
Show Gist options
  • Save electronicbites/662586 to your computer and use it in GitHub Desktop.
Save electronicbites/662586 to your computer and use it in GitHub Desktop.
logKeysOfDict.m
void logKeysOfDictName(NSDictionary *dict, NSString *dictName) {
for (id key in dict) {
NSLog(@">>>> [%@] key - loaded %@", key, dictName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment