Guest User

Untitled

a guest
Oct 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. for ((id) key in [results allKeys]) {
  2. id value = [results objectForKey:key];
  3. if ([value isKindOfClass:[NSDictionary class]]) {
  4. NSDictionairy* newDict = (NSDictionairy*)value;
  5. for ((id) subKey in [newDict allKeys]) {
  6. ...
  7. }
  8. }
  9. }
Add Comment
Please, Sign In to add comment