Guest User

Untitled

a guest
Dec 12th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. for (id aKey in dictionary)
  2. {
  3. BOOL matches = ... // test if key meets requirements here
  4. if (matches)
  5. {
  6. return [dictionary objectForKey:aKey];
  7. }
  8. }
Add Comment
Please, Sign In to add comment