Skip to content

Instantly share code, notes, and snippets.

@thruflo
Created May 13, 2010 11:21
Show Gist options
  • Select an option

  • Save thruflo/399731 to your computer and use it in GitHub Desktop.

Select an option

Save thruflo/399731 to your computer and use it in GitHub Desktop.
/*
for(id key in searchControlsDict) {
[[searchControlsDict objectForKey:key] setObject:[NSMutableArray [[[searchControlsDict objectForKey:key] objectForKey:VALUES]] forKey:VALUES] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
}
*/
for(id key in searchControlsDict) {
NSMutableArray *tempValues = [[NSMutableArray alloc] initWithCapacity:0];
tempValues = [[searchControlsDict objectForKey:key] objectForKey:VALUES];
NSLog(@"%d", tempValues)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment