Guest User

Untitled

a guest
May 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /*
  2. for(id key in searchControlsDict) {
  3. [[searchControlsDict objectForKey:key] setObject:[NSMutableArray [[[searchControlsDict objectForKey:key] objectForKey:VALUES]] forKey:VALUES] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
  4. }
  5.  
  6. */
  7.  
  8. for(id key in searchControlsDict) {
  9. NSMutableArray *tempValues = [[NSMutableArray alloc] initWithCapacity:0];
  10. tempValues = [[searchControlsDict objectForKey:key] objectForKey:VALUES];
  11. NSLog(@"%d", tempValues)
  12. }
Add Comment
Please, Sign In to add comment